Advertisement
filimonic

Habrahabr Python Guide Paste #3

Jun 16th, 2013
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. #Python 3.3.2
  2.  
  3. >>> x = "Hello, Python!"
  4. >>> for char in x:
  5. ...     print(char)
  6. ...
  7. H
  8. e
  9. l
  10. l
  11. o
  12. ,
  13.  
  14. P
  15. y
  16. t
  17. h
  18. o
  19. n
  20. !
  21. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement