Home > database >  How are complex applications made with Python in an IDE with raw code?
How are complex applications made with Python in an IDE with raw code?

Time:02-16

The question may not have been clear as there was not much of a better way for me to word it but I will do my best here: Most scripting is done raw in the IDE. When coding with Python it simply runs everything through the "console." I was wondering how full-on apps with different screens and all that cool stuff are made with Python as well, other than just being a console with many different commands?

CodePudding user response:

If you're talking about gui (graphical user interface) applications tkinter module is what you're looking for allowing you to create simple gui applications.

Here is a link to the documentation
https://docs.python.org/3/library/tkinter.html

should be included in python by default.

CodePudding user response:

Basically if you want to design cool stuff with colours and nice picture, you can use turtle. Turtle is a cool library which allows you to draw turtles and other cool animations. Useful for beginners like you :)

  • Related