Guest User

Untitled

a guest
Apr 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #module
  2. blah=[1,"pi",5,True]
  3. for e in range(len(blah)): print str(e) + ":", blah[e]
  4. #output
  5. 0: 1
  6. 1: pi
  7. 2: 5
  8. 3: True
Add Comment
Please, Sign In to add comment