Hi, I have some problem with object reference<br>Say I have this code<br><br>a = b = c = None<br>slist = [a,b,c]<br>for i in range(len(slist)):<br><div style="margin-left: 40px;">slist[i] = 5<br></div>print slist<br>print a,b,c<br>
<br>I got this<br>[5, 5, 5]<br>None None None<br><br>    Question is how can I got all a,b,c variable to have value 5 also?<br>    Thanks in advance<br>-- <br>Passion is my style<br>