Get your own Python server Result Size: 625 x 565
x
 
day = 4
match day:
  case 6:
    print("Today is Saturday")
  case 7:
    print("Today is Sunday")
  case _:
    print("Looking forward to the Weekend")
Looking forward to the Weekend