Paso 4: Si y elif | La vida no es completa sin ellos
Más programas de python no serían capaces de funcionar y tener las capacidades que tiene sin si y elif. Se utiliza así:
myvariable = "dog" #makes myvariable a variable that represents dog if myvariable == "dog": #It is saying "If myvariable is equal to "dog" print "dog is dog" #Then print "dog is dog"" elif myvariable != "dog": #"If myvariable is not equal to "dog" print "Dog is not dog" #Then print "dog is not dog""
También se puede utilizar si y elif para resolver una ecuación. (Nota: multiplicar, nos * y / para dividir) Python resuelve 5-1 y si la respuesta es 3, se imprimirá "tres". Si no es 3, se imprimirá "No seguro"
x = 5 y = 1 z = 3 myequation = x-y if myequation == z: print "three" elif myequation != z: print "Not Sure"
Compruébalo tú mismo: Hacer Python resolver 10 + 10