“Match Case Python” Código de respuesta

Match Case Python

a = 15
match a:
  case 15:
    print ("fifteen")
  case  16:
    print ("sixteen")
BGOPC

Caso de partido de Python

x = 4

# x is the variable to match
match x:

    # if x is 0
    case 0:
        print("x is zero")

    # case with if-condition
    case 4 if x % 2 == 0:
        print("x % 2 == 0 and case is 4")

    # Empty case with if-condition
    case _ if x < 10:
        print("x is < 10")

    # default case(will only be matched if the above cases were not matched)
    # so it is basically just an else:
    case _:
        print(x)



# WHAT THE CODE WOULD LOOK LIKE IF IT DIDN'T USE MATCH/CASE

x = 4

if x == 0:
	print("x is zero")
elif x == 4 and x % 2 == 0:
	print("x % 2 == 0 and case is 4")
elif x < 10:
	print("x is < 10")
else:
	print(x)
Defeated Deer

Respuestas similares a “Match Case Python”

Preguntas similares a “Match Case Python”

Más respuestas relacionadas con “Match Case Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código