name = input()
match name:
case "A":
doThing()
case "B":
doOtherThing()
case _:
print("do this if nothing else is the case")match name:
case "a" | "b" | "c" #Case a or b or cname = input()
match name:
case "A":
doThing()
case "B":
doOtherThing()
case _:
print("do this if nothing else is the case")match name:
case "a" | "b" | "c" #Case a or b or c