Advertisement
molendzik

Listy, tablice - zadanie 2

Nov 25th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. theList = [10,11,12,13,14,15,16,17,18,19]
  2.  
  3. index = [1,4,7,9]
  4.  
  5. for x in index:
  6.   print(theList[x])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement