write a program to check if the day is Sunday or not. If it is Sunday display “It is a Holiday” else display “It is a working day”
Answers
Answered by
2
Answer:
Note: The below program is a python program.
Day = str(input ("Enter any day: ")) #Ask for input
a = Day.capitalize( ) #Making input as we want
if a == "Sunday" :
print ("Its a holiday")
else:
print ("Its a working day")
Answered by
7
Answer:
python programme
Explanation:
Answer by @MrMysteryy
Similar questions
Math,
10 months ago