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
2
Answer:
month = input("Enter month - ")
year = input("Enter year - ")
date = input("Enter Date - ")
print(f"( {date}-{month} {year})")
Similar questions
Physics,
21 days ago
Hindi,
21 days ago
Chemistry,
1 month ago
Social Sciences,
1 month ago
Biology,
8 months ago