return A or B ? Neulich war ich verwirrt, als ich diesen Code sah.
python
def hoge:(self)
return A or B
Ich habe noch nie oder oder und in der Rückgabesyntax gesehen, also werde ich es nachschlagen.
Zitat aus der offiziellen Dokumentation
The expression x and y first evaluates x; if x is false, its value is returned; otherwise, y is evaluated and the resulting value is returned. The expression x or y first evaluates x; if x is true, its value is returned; otherwise, y is evaluated and the resulting value is returned.
Ich weiß es nicht, wenn ich es nicht schreibe.
or_and_in_return.py
def and_in_return1():
return 1 == 1 and 1 == 1
def and_in_return2():
return 1 == 0 and 1 == 1
def and_in_return3():
return 1 == 1 and 1 == 0
print(and_in_return1()) # True
print(and_in_return2()) # False
print(and_in_return3()) # False
def or_in_return1():
return 1 == 1 or 1 == 1
def or_in_return2():
return 1 == 0 or 1 == 0
def or_in_return3():
return 1 == 1 or 1 == 0
print(or_in_return1()) # True
print(or_in_return2()) # False
print(or_in_return3()) # True
Es war das gleiche wie die Aktion in ...
Recommended Posts