Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. # Margaret Venes
  2. # ICS3U
  3. # This program prints the array
  4.  
  5. the_array = []
  6. some_int = 2
  7.  
  8. print(the_array)
  9. the_array.append('bob')
  10.  
  11. print(the_array)
  12. the_array.append('fred')
  13. print(the_array)
  14.  
  15. print(the_array[1])
  16. print(the_array[0])
  17.  
  18. the_array.append('sam')
  19. print(the_array[some_int])
  20. print(len(the_array))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement