Posts: 4,787
Threads: 76
Joined: Jan 2018
There are many ways. One of them is to open the Python file in a Python IDE, then choose run in a menu or use a shortcut. You could install
thonny for example and open the file in thonny.
« We can solve any problem by introducing an extra level of indirection »
Posts: 4,787
Threads: 76
Joined: Jan 2018
(Mar-05-2025, 05:08 PM)smattiko83 Wrote: What is the difference between thonny and pycharm?
Thonny is an IDE for beginners. There are many many IDEs for Python. You can also program Python by using only a simple editor as I usually do. Then you can run your programs from the command line by typing something like
python myscript.py
« We can solve any problem by introducing an extra level of indirection »