Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. """
  2. a = ('hello world')
  3. b = ('hello world')
  4. c = ('hello world')
  5. d = ('hello world')
  6. e = ('hello world')
  7. print (a)
  8. print (b)
  9. print (c)
  10. print (a,e)
  11.  
  12. n = ('hello world')
  13. c = 0
  14. while c <= 9:
  15. print (n)
  16. c= c+1
  17. """
  18. n= "hello world"
  19. for i in range(5):
  20. print(n,end='\n')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement