Python Programming https://www.youtube.com/watch?v=N4mEzFDjqtA&list=WL&index=34 From around 12:40
http://ideone.com/5qjmpX
test.py
pi_tuple = (3,1,4,1,5,9)
aList = list(pi_tuple)
print aList[0]
print aList[1]
print aList[2]
result
Success time: 0.02 memory: 44632 signal:0
3
1
4
Recommended Posts