return A or B ? L'autre jour, j'étais confus quand j'ai vu ce code.
python
def hoge:(self)
return A or B
Je n'ai jamais vu ou ou et dans la syntaxe de retour, alors je vais chercher.
Citation de la documentation officielle
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.
Je ne sais pas à moins de l'écrire.
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
C'était la même chose que l'action utilisée dans if ...
Recommended Posts