To setup a Python development environment for Windows is a simple as downloading and installing the Zeus IDE: https://www.zeusedit.com/download.html
That installer is for the Zeus IDE, but it also installs all the tools needed for Python development on a Windows machine.
Creating a Python Program
With the Zeus IDE installed, select the Python Template option as shown below: Selecting that New File option will create the Python script shown below:
Code: Select all
#
# Python Template: zExample\appPython.tpl
#
""" Zeus IDE Python Code Snippet """
import sys
def main():
"""Simple Python Example."""
if len(sys.argv) > 0:
print('Argument Details Provided')
print('-------------------------')
print('Number of arguments:', len(sys.argv), 'arguments.')
print('Argument List:', str(sys.argv))
print('\n')
print('Type in some data and hit the enter key to continue....\n')
result = sys.stdin.readline()
print('You entered this data: {}'.format(result))
main()
By using the Tools, Language Shells, Python REPL menu, it is also possible to run the Python console from inside the Zeus IDE.
Using that menu will bring up the Python console where code can be entered and run as shown below: Using the PIP Utility
The installer also includes the pip utility, meaning additional Python modules can be easily installed. Find below a few examples on using that utility.
Using Zeus with Python Pandas
Using Zeus with Python Numpy, Matplotlib, Scipy and Seaborn