Computer Science, asked by ramsmedicine, 1 month ago

4. Store your date of birth, month of birth and year of birth in three different variables. Write a program to print your Date of birth in the format of

Date-Month-Year on a single line. Example( 20-December 2009)

Answers

Answered by CoderRishav
2

Answer:

month = input("Enter month - ")

year = input("Enter year - ")

date = input("Enter Date - ")

print(f"( {date}-{month} {year})")

Similar questions