Advertisement
domingothegamer

Untitled

Sep 17th, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. def thebirthdayfunction():
  2.     fname = input("What is your first name: ")
  3.     lname = input("What is your last name: ")
  4.     print("Enter your bithday:")
  5.     month = input("Month: ")
  6.     day = input("Day: ")
  7.     year = input("Year: ")
  8.     print(fname + " " + lname + "'s birthday is on: " + month + " " + day + ", " + year)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement