Conditional statements in Python allow you to execute code based on certain conditions.

if Statementx = 10
if x > 5:
print("x is greater than 5")
elif (Else If) Statementx = 10
if x > 15:
print("x is greater than 15")
elif x > 5:
print("x is greater than 5 but less than or equal to 15")
else Statementx = 3
if x > 5:
print("x is greater than 5")
else:
print("x is 5 or less")

You can use and, or, and not to combine multiple conditions.
x = 10
y = 20
if x > 5 and y > 15:
print("Both conditions are true")