tabnation

python fireplace 2

Dec 20th, 2025
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. import time
  2. import random
  3. import os
  4.  
  5. frames = [
  6. r"""
  7. ( . )
  8. ) . ( (
  9. ( . ( ) )
  10. ) ) ( (
  11. ( ( ( ) )
  12. ============
  13. \__________/
  14. """,
  15. r"""
  16. ( . )
  17. ( . ) (
  18. ) ( . )
  19. ( ) ( (
  20. ) ( ) )
  21. ============
  22. \__________/
  23. """
  24. ]
  25.  
  26. try:
  27. while True:
  28. os.system("cls" if os.name == "nt" else "clear")
  29. print(random.choice(frames))
  30. time.sleep(0.15)
  31. except KeyboardInterrupt:
  32. pass
  33.  
Advertisement
Add Comment
Please, Sign In to add comment