Birthday wishes In Python
Programming with source code:
Here we created birthday wishes In Python..
Every programmer like to do different think using programming here we are uploaded many projects using python,like Tic Tac Toe game, Puzzel Game, age Calculator project, birthday wishes program and much program we are uploaded check it get the source code free..
Every person like to wish his birthday in different styles to impress someone.
Here we created birthday wishes project to wish your friends.
Happy Birthday |
This project created using ASCII code. ASCII stand for American Standard code for information interchange
ASCII that uses numeric codes to display character or figure.
In this ASCII code included upper and lowercase letter,number, and symbol to represent charecter
Copy source code and run this program and wish your friends.
Source code
#A Kiran Rajput #yt----PyCoder import threading import time cake=''' _..._ ,s$$$s. _..._ ,s$$$s. .$$$$$$$s$$ss$$$$, .$$$$$$$s$$ss$$$$, $$$sss$$$$s$$$$$$$ $$$sss$$$$s$$$$$$$ $$ss$$$$$$$$$$$$$$ ( ) $$ss$$$$$$$$$$$$$$ '$$$s$$$$$$$$$$$$' ) (*) (*) ( '$$$s$$$$$$$$$$$$' '$$$$$$$$$$$$$$' (*) | | (*) '$$$$$$$$$$$$$$' S$$$$$$$$$$$' | |~| |~| | S$$$$$$$$$$$' '$$$$$$$$$' |~| | | | | |~| '$$$$$$$$$' '$$$$$' | | | | | | | | '$$$$$' '$$$' ,| |a@@@@| |@@@@@@@@@@@| |@@@@a| |. '$$$' ; .,a@@@| |@@@@@| |@@@@@@@@@@@| |@@@@@| |@@@@a,. ; ; ,a@@@@@@| |@@@@@@@@@@@@.@@@@@@@@@@@@@@| |@@@@@@@a, ; ; a@@@@@@@@@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@@@@@@@@@a ; ', ;`@@@@@@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@@@@@@'; ', ; ;@@@`@@@@@@@@@@@@@' . `@@@@@@@@@@@@@@@@'@@@; ; ,' ;@@@;,.aaaaaaaaaa . aaaaa,,aaaaaaa,;@@@; ,' ; ;;@;;;;@@@@@@@@;@ @.@ ;@@@;;;@@@@@@;;;;@@; ; ', ;;;;;;;@@@@;@@;;@ @@ . @@ ;;@;;;;@@;@@@;;;;;;; ', ', ;;;;;;;;@@;;;;;;; @@ . @@ ;;;;;;;;;;;@@;;;;@;; ', ; ;;;;;;;;;;;;;;;;;@@ . @@;;;;;;;;;;;;;;;;@@@; ; ' ,%%%;;;;;;;;@;;;;;;;; . ;;;;;;;;;;;;;;;;@@;;%%%, ' .%%%%%%;;;;;;;@@;;;;;;;; ,%%%, ;;;;;;;;;;;;;;;;;;;;%%%%%%, .%%%%%%%;;;;;;;@@;;;;;;;; ,%%%%%%%, ;;;;;;;;;;;;;;;;;;;;%%%%%%%, %%%%%%%%`;;;;;;;;;;;;;;;; %%%%%%%%%%% ;;;;;;;;;;;;;;;;;;;'%%%%%%%% %%%%%%%%%%%%`;;;;;;;;;;;;,%%%%%%%%%%%%%,;;;;;;;;;;;;;;;'%%%%%%%%%%%% `%%%%%%%%%%%%%%%%%,,,,,,,%%%%%%%%%%%%%%%,,,,,,,%%%%%%%%%%%%%%%%%%%%' `%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%' `%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%' """"""""""""""`,,,,,,,,,'""""""""""""""""" `%%%%%%%' `%%%%%' %%% %%%%% .,%%%%%%%,. ,%%%%%%%%%%%%%%%%%%%, ''' wish=''' @Akiran Rajput PyCoder /$$ /$$ /$$ /$$ /$$ /$$ /$$ | $$ | $$ | $$ |__/ | $$ | $$ | $$ | $$ | $$ /$$$$$$ /$$$$$$ /$$$$$$ /$$ /$$ | $$$$$$$ /$$ /$$$$$$ /$$$$$$ | $$$$$$$ /$$$$$$$ /$$$$$$ /$$ /$$ | $$$$$$$$ |____ $$ /$$__ $$ /$$__ $$| $$ | $$ | $$__ $$| $$ /$$__ $$|_ $$_/ | $$__ $$ /$$__ $$ |____ $$| $$ | $$ | $$__ $$ /$$$$$$$| $$ \ $$| $$ \ $$| $$ | $$ | $$ \ $$| $$| $$ \__/ | $$ | $$ \ $$| $$ | $$ /$$$$$$$| $$ | $$ | $$ | $$ /$$__ $$| $$ | $$| $$ | $$| $$ | $$ | $$ | $$| $$| $$ | $$ /$$| $$ | $$| $$ | $$ /$$__ $$| $$ | $$ | $$ | $$| $$$$$$$| $$$$$$$/| $$$$$$$/| $$$$$$$ | $$$$$$$/| $$| $$ | $$$$/| $$ | $$| $$$$$$$| $$$$$$$| $$$$$$$ |__/ |__/ \_______/| $$____/ | $$____/ \____ $$ |_______/ |__/|__/ \___/ |__/ |__/ \_______/ \_______/ \____ $$ | $$ | $$ /$$ | $$ /$$ | $$ | $$ | $$ | $$$$$$/ | $$$$$$/ |__/ |__/ \______/ \______/ ''' def task1(): for letter in cake: time.sleep(0.01) print(letter, end='') for letter in wish: time.sleep(0.01) print(letter, end='') t1 = threading.Thread(target=task1, name='t1') # starting threads t1.start() #PyCoder