Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from datetime import datetime,date
- def happychinesenewyear (name):
- myday = date.today()
- if myday.month==2 and myday.day==5:
- print ("Happy Chinese New Year to " , name, myday)
- else:
- print (myday)
- happychinesenewyear("Naomi")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement