0
Can we add multiple conditions in an if statement using python?
If statement
4 Answers
+ 4
Like this:
x = 3
y = 4
z = 5
if (x == 3 and y == 5 or z == 5):
print('succes')
So, yes you can.
+ 1
Thanks man
0
Age = 12
Name = input("What's your name? ")
if Age = 13:
print("Invalid age!")
if Age <11:
print("Welcome")
elif (Age == 12 or <11):
print("Children")
else:
print("Not Eliegible")
- 1
YES!