a=[5,12,7,9,5]print(a)print(a[3])a.append(33)print(a)# your code goes here
Standard input is empty
[5, 12, 7, 9, 5] 9 [5, 12, 7, 9, 5, 33]
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!