Wings IDE for Python programming
Working with Python IDE may not be an attractive experience for beginning Python programming as well as for professionals, therefore; it is recommended to use another way. One of the recommended ways is using text editors.
In this part we will discuss using Wings IDE as python text editor.
1- First step is to install Python on your computer and add it to path while installing by select (add to path) option as shown below
2- restart your computer and download Wings IDE. You can chose free editions or try the professional one for free.
3- Wings will automatically integrate with python on your computer
4- Write your program. For example lets run this simple code
a=1
b=2
print(a+b)
After saving the program lets press the green triangle to RUN the program
The following message list will appear. You can make your own settings or chose the default one as shown below. I used the defaults setting for this example. Press OK
The test program run is shown below
Conclusion
Wings IDE is user friendly python text editor , specially; its easily to integrate with existing python without much efforts.