Guest User

Untitled

a guest
Nov 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. INTERNET_GUY = [
  2. " .,...:, ",
  3. " :,:::::,. ",
  4. " `,.';;;';, ",
  5. " `,.;'''':. ",
  6. " :'+'''; ",
  7. " ;''';; ",
  8. " ;''';;. ",
  9. " ,,.:;;;:;:;;:':.::. ",
  10. " .::,,;:;++''+:';,...` ",
  11. " `,,:;'::+'';:::';:;:. ",
  12. " ;.::;:::::+;:::::':;:.. ",
  13. " :.:;;:::;';;''::::;;:;; ",
  14. " ,.:;+:';;:;'''::','::::: ",
  15. " ,,;;,;;:;':::;';''+;:,,. ",
  16. " ::;+`;;;;:':::;::;'',.:: ",
  17. " :,:;' '''';;;;''':,;';,,, ",
  18. " ,;;;' '::::::::::':'';.. ",
  19. " ::;' ;;;;;;;;;;';;',,:. ",
  20. " ,..: `';;;';;;:;::';,,. ",
  21. " ;:::; ;;;;;;;:::::'...` ",
  22. " ,.,,: ;;;;;;;::::::,,, ",
  23. " :::; ;;;;;;:::;:;;::: ",
  24. " .;`` :;;;;;;;;+:;;;;; ",
  25. " :;;;;;;;':;:;`.. ",
  26. " ;;';;,;';::: ",
  27. " ;;;+;,';;;:; ",
  28. " `;;;;:;;;;; ",
  29. " ;;;':,;;;' ",
  30. " .;;+;.;;:; ",
  31. " `';', '';' ",
  32. " ;;;;; ;;;; ",
  33. " ';;;; ;;;;; ",
  34. " ';;' `;;;;` ",
  35. ]
  36.  
  37. MESSAGES = [
  38. (6, "Don't worry,"),
  39. (8, "ma'am"),
  40. (16, "I'm from"),
  41. (18, "the Internet!"),
  42. (-1, None),
  43. ]
  44.  
  45. messages = iter(MESSAGES)
  46. next_i, next_msg = next(messages)
  47. for i, line in enumerate(INTERNET_GUY):
  48. if next_i == i:
  49. print(next_msg.center(40), line)
  50. next_i, next_msg = next(messages)
  51. else:
  52. print(' ' * 40, line)
Add Comment
Please, Sign In to add comment