tłumacz Python po uruchomieniu pliku Pythona
| foo.py |
----------
testvar = 10
def bar(bing):
return bing*3
--------
$ python -i foo.py
>>> testvar
10
>>> bar(6)
18
Grumpy Gerenuk