Advertisement
nyapoleon_legionary

Birthday-Surprise-Script

Dec 1st, 2024 (edited)
31
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 1 0
  1. import time
  2.  
  3. def surprise():
  4.     print("\n🎉🎉🎉 HAPPY BIRTHDAY! 🎉🎉🎉\n")
  5.     print("Here's a cool ASCII cake for you:")
  6.     print(r"""
  7.      ,   ,   ,  
  8.     / ) ( ) ( \
  9.    (   .     .  )
  10.     \        /
  11.      `-------`
  12.    """)
  13.     time.sleep(5)  # Hold the surprise for a few seconds
  14.  
  15. surprise()
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement