1THONNY(1)                   General Commands Manual                  THONNY(1)
2
3
4

NAME

6       thonny - Python IDE for beginners
7

SYNOPSIS

9       thonny [FILE...]
10

DESCRIPTION

12       Thonny is a Python IDE for learning and teaching programming.
13

BASIC USAGE

15       On the first run you see a code editor and the Python shell.
16
17       Enter some Python code (eg.  print("Hello world") ) into the editor and
18       save the file with Ctrl+S.
19
20       Now run the code by pressing F5. You should see the output of the  pro‐
21       gram in the Python shell.
22
23       You can also enter Python code directly into the shell.
24

USING THE DEBUGGER

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

MORE INFORMATION

33       You  can find more information, screenshots and a walk-through video at
34       https://thonny.org.
35
36
37
38                                                                     THONNY(1)
Impressum