python en ligne de commande

Il suffit de taper python (voir python3.3 si vous précisez la version de python).

Et python fournit l'invite de commande >>>. Pour sortir de l'interpréteur, il faut faire control d

$ python >>> 

Dans le cas d'une instruction if, par exemple l'interprétateur sait qu'il attend une partie then qui peut être suivie d'une partie else. Après la première ligne de l'instruction if, il affiche l'invite ..., également après la partie then.

>>> the_world_is_flat = 1
>>>
if the_world_is_flat:
... print("Be careful not to fall off!")
...
Be careful not to fall off!

Lisez "Utilisez python comme un calculateur" dans le tutoriel officiel de Python

» Glossaire du langage python