Write a python program by using binary operator to display sum,
difference, product, quotient, floor division, cube of two numbers
or
Write a python program to display the name of the day according to the
number given by the user.
Answers
Answered by
6
Answer:
Taken day number from user weekday = int(input("Enter weekday day number (1-7) : ")) if weekday == 1 : print("\nMonday"); elif weekday == 2 : print("\nTuesday") elif(weekday == 3) : print("\nWednesday") elif(weekday == 4) : print("\nThursday") elif(weekday == 5) : print("\nFriday") elif(weekday == 6) : print("\ ...
Answered by
2
# Taken day number from user weekday = int(input("Enter weekday day number (1-7) : ")) if weekday == 1 : print("\nMonday"); elif weekday == 2 : print("\nTuesday") elif(weekday == 3) : print("\nWednesday") elif(weekday == 4) : print("\nThursday") elif(weekday == 5) : print("\nFriday") elif(weekday == 6) : print("\
I hope it's help you please like and mark me on brainliester✌✌✌
by divya ❣️❣️❣️❣️
Similar questions