Skip to content

Instantly share code, notes, and snippets.

@arnvgh
Created September 17, 2022 08:28
Show Gist options
  • Save arnvgh/9d7a9db0aea0294b8fbc8c651f7c828c to your computer and use it in GitHub Desktop.
Save arnvgh/9d7a9db0aea0294b8fbc8c651f7c828c to your computer and use it in GitHub Desktop.
Wishes Hppy Birthday to you
import time
from random import randint
for i in range(1, 100):
print(' ')
space = ' '
for i in range(1, 1000):
count = randint(1, 99)
while (count > 0):
space += ' '
count -= 1
if (1 % 10==0):
print(space + '๐Ÿ’ฎ Happy Birthday! ๐ŸŒŽ')
elif (i % 9 == 0):
print(space + '๐ŸŽ’')
elif (1 % 8 == 0):
print(space + '๐ŸŒ… ')
elif (i % 7 == 0):
print(space + '๐Ÿ ')
elif (i % 5 == 0):
print(space + ' ๐ŸŽ')
elif (i % 6 == 0):
print(space + '๐ŸฌHappy Birthday!')
elif (i % 4 == 0):
print(space + '๐Ÿ’ฎ')
space = ' '
time.sleep(0.2)
@arnvgh
Copy link
Author

arnvgh commented Sep 17, 2022

Simple Python Script to wish you Happy Birthday ๐ŸŽ‰

Made to wish my friend happy Birthday ๐Ÿ“ฆ ๐Ÿก

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment