import switch python code example
Example 1: switch python
'Python 3.10 and above'
value = 0
match value:
case 0:
print('0')
case 1:
print('1')
case 2:
print('2')
Example 2: py switch case
def switch_demo(argument):
switcher = {
1: "January",
2: "February",
3: "March",
4: "April",
5: "May",
6: "June",
7: "July",
8: "August",
9: "September",
10: "October",
11: "November",
12: "December"
}
print switcher.get(argument, "Invalid month")