Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- __author__ = 'Shail'
- def doMonday(): print("You're a workaholic!")
- def doTuesday(): print("You're no fun!")
- def doWednesday(): print("You have great sense of humor!")
- def doThursday(): print("You're religious!")
- def doFriday(): print("FUN FUN FUN FUN!")
- def doSaturday(): print("You're lazy.")
- def doSunday(): print("You like to wake up late!")
- def err():print("You're retarded");
- takeaction = {
- "Monday":doMonday,
- "Tuesday":doTuesday,
- "Wednesday":doWednesday,
- "Thursday": doThursday,
- "Friday": doFriday,
- "Saturday": doSaturday,
- "Sunday":doSunday
- }
- takeaction.get(input("Enter your favorite day of the week: "), err)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement