Guest User

Untitled

a guest
Jan 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. a=5; b=10
  2.  
  3. x=['a','b']; for i,j in enumerate(x): print(i,":", j)
  4.  
  5. x = ['a','b']
  6. for i,j in enumerate(x):
  7. print(i, ":", j)
  8.  
  9. stmt_list ::= simple_stmt (";" simple_stmt)* [";"]
  10.  
  11. from __future__ import braces
  12.  
  13. for i,j in enumerate(x): print(i,":", j)
  14.  
  15. x=['a','b']; print True if True else False
  16.  
  17. x=['a','b'];
Add Comment
Please, Sign In to add comment