Computer Science, asked by nidhigoel0880, 4 months ago

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 Himanshu8715
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 Anonymous
7

Answer:

python programme

Explanation:

Answer by @MrMysteryy

Similar questions