Get your own Python server Result Size: 625 x 565
x
 
day = 4
match day:
  case 1 | 2 | 3 | 4 | 5:
    print("Today is a weekday")
  case 6 | 7:
    print("I love weekends!")
Today is a weekday