Affectation Quizz 4
—-

#!python
>>> def f(x):
... x = "world"
...
>>> a = "hello"
#!html
<br clear=right>
—-

#!python
>>> f(a)
#!html
<br clear=right>

#!html
<br clear=right>
—-
#!python
>>> a
"hello"
—-
—-

#!python
>>> def f(x):
... x = "world"
...
>>> a = "hello"
#!html
<br clear=right>
—-

#!python
>>> f(a)
#!html
<br clear=right>

#!html
<br clear=right>
—-
#!python
>>> a
"hello"
—-