Modules Quizz 1

>>> m = 2
#!html
<br clear=right>

>>> import module1 as m
#!python
# fichier module1.py
prompt = '%'
def printer(x):
print(prompt,x)
#!html
<br clear=right>

>>> m.prompt = '>'
>>> m.printer('Hello')
> Hello
#!html
<br clear=right>