Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

thonny - Python IDE for beginners

Basic Usage

       On the first run you see a code editor and the Python shell.

       Enter some Python code (eg.  print("Helloworld") ) into the editor and save the file with Ctrl+S.

       Now run the code by pressing F5. You should see the output of the program in the Python shell.

       You can also enter Python code directly into the shell.

Description

       Thonny is a Python IDE for learning and teaching programming.

More Information

       You can find more information, screenshots and a walk-through video at https://thonny.org.

                                                                                                       THONNY(1)

Name

       thonny - Python IDE for beginners

Synopsis

thonny [FILE...]

Using The Debugger

       You  can  see  the  steps  Python  takes to run your code.  For this you need to press Ctrl+F5 to run the
       program in debug mode.  In this mode you can advance the program either with  big  steps  (F6)  or  small
       steps  (F7).   If you want to see how the steps affect program variables, then open global variables pane
       (View => Variables).

See Also