Review Note

Last Update: 07/10/2024 01:20 PM

Current Deck: Python fundamentals

Published

Fields:

Code
def foo():
    print("here")
    return False

x = foo() or True
print(x)
y = True or foo()
print(y)

Output
here
True
True
Explanation
or short-circuits: it only evaluates what it has to.
Context
Python

Tags:

python_fundamentals

Suggested Changes:

Deck Changes (Suggestion to move the Note to the following Deck):

Field Changes:

Tag Changes: