Advertisement
Felanpro

Python lists

Feb 23rd, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. #---Lists in Python---
  2.  
  3. #Declaration and initialization
  4. array = [1, 2, 3, 4, 5]
  5.  
  6. #Lazy way of printing out the array
  7. print(array)
  8.  
  9. #Right way of printing out the array
  10. x = 0
  11. for x in range(5):
  12.     print(array[x]) #index [0 - n]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement