Modules Quizz 2
—-

>>> prompt = '#'
—-

>>> from module1 import *
#!python
# fichier module1.py
prompt = '%'
def printer(x):
print prompt, x
—-

>>> prompt = '>'
—-
>>> printer('Hello')
% Hello
—-
—-

>>> prompt = '#'
—-

>>> from module1 import *
#!python
# fichier module1.py
prompt = '%'
def printer(x):
print prompt, x
—-

>>> prompt = '>'
—-
>>> printer('Hello')
% Hello
—-