Computer Science, asked by ramsmedicine, 5 hours ago

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)




pls answer to my question pls

Answers

Answered by CoderRishav
1

Answer:

month = input("Enter month - ")

year = input("Enter year - ")

date = input("Enter Date - ")

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

Similar questions