Affectation Quizz 2
—-

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

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

#!python
>>> b[0] = "world"
#!html
<br clear=right>
—-
#!python
>>> a
[ "world" ]
—-
—-

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

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

#!python
>>> b[0] = "world"
#!html
<br clear=right>
—-
#!python
>>> a
[ "world" ]
—-