Guest User

Untitled

a guest
Jan 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. string = "abcd"
  2. for i in string:
  3. print(i)
  4. ---------------
  5. output:
  6. a
  7. b
  8. c
  9. d
  10.  
  11. string = "abcd"
  12. for(i in string)
  13. console.log(i)
  14. ---------------
  15. output:
  16. 0
  17. 1
  18. 2
  19. 3
Add Comment
Please, Sign In to add comment