Please fast
Accept the date in the following format using parameters?
day month year
25 10 2020
Write a program to print the date in the following format:
25 th October 2020
Answers
Answered by
0
Explanation:
def (a,b,c):
a = a "th"
b = "October"
c = c
print(a,b,c,end=" ")
(25,10,2020)
Similar questions