fork download
  1. year_born = ("Paris Hilton", 1981)
  2. print year_born[0]
  3. print year_born[1]
  4. year_born[1] = 2011 # any modification will throw error
Runtime error #stdin #stdout #stderr 0s 23304KB
stdin
Standard input is empty
stdout
Paris Hilton
1981
stderr
Traceback (most recent call last):
  File "prog.py", line 4, in <module>
TypeError: 'tuple' object does not support item assignment