Advertisement
ydpetkov

day_of_week

Jul 18th, 2022
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. day_of_the_week = int(input())
  2.  
  3. if day_of_the_week == 1:
  4.     print("Monday")
  5. elif day_of_the_week == 2:
  6.     print("Tuesday")
  7. elif day_of_the_week == 3:
  8.     print("Wednesday")
  9. elif day_of_the_week == 4:
  10.     print("Thursday")
  11. elif day_of_the_week == 5:
  12.     print("Friday")
  13. elif day_of_the_week == 6:
  14.     print("Saturday")
  15. elif day_of_the_week == 7:
  16.     print("Sunday")
  17. else:
  18.     print("Error")
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement