Change individual elements of a list
a = ['spam', 'eggs', 100, 1234] print a a[2] = a[2] + 23 print a