Interpréteur Python après avoir exécuté un fichier Python

| foo.py |
----------
testvar = 10

def bar(bing):
  return bing*3

--------



$ python -i foo.py
>>> testvar 
10
>>> bar(6)
18
Grumpy Gerenuk