How to Combine Conditional Statements in Python


In this example we will show how to use the or keyword to combine conditional statements in Python.

Source Code

x = 5
y = 8
z = 10
if y > x or y > z:
    print("At least one condition is True!")

Output:

At least one condition is True!
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments