Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time
- import random
- import os
- frames = [
- r"""
- ( . )
- ) . ( (
- ( . ( ) )
- ) ) ( (
- ( ( ( ) )
- ============
- \__________/
- """,
- r"""
- ( . )
- ( . ) (
- ) ( . )
- ( ) ( (
- ) ( ) )
- ============
- \__________/
- """
- ]
- try:
- while True:
- os.system("cls" if os.name == "nt" else "clear")
- print(random.choice(frames))
- time.sleep(0.15)
- except KeyboardInterrupt:
- pass
Advertisement
Add Comment
Please, Sign In to add comment