Ejemplo 1: cambiar declaraciones python
# Here is one way to implement a switch construct
# Switcher is a dictionary data type here
def week(i):
switcher={
0:'Sunday',
1:'Monday',
2:'Tuesday',
3:'Wednesday',
4:'Thursday',
5:'Friday',
6:'Saturday'
}
return switcher.get(i,"Invalid day of week")
print(week(5)) # Call the function
Ejemplo 2: cambiar python
'Python 3.10 and above'
value = 0
match value:
case 0:
print('0')
case 1:
print('1')
case 2:
print('2')
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)