WorksheetsUso de IF, ELIF. ELSE en python
Total questions: 6
Worksheet time: 3mins
What is the output of the following snippet?
x = 5
y = 10
z = 8
print(x > y)
print(y > z)
False, False
False, True
True, False
True, True
What is the output of the following snippet?
x, y, z = 5, 10, 8
print(x > z)
print((y - 5) == x)
False, True
True, True
True, False
False, False
What is the output of the following snippet?
x, y, z = 5, 10, 8
x, y, z = z, y, x
print(x > z)
print((y - 5) == x)
True, True
False, False
True, False
False, True
What is the output of the following snippet?
x = 10
if x == 10:
print(x == 10)
if x > 5:
print(x > 5)
if x < 10:
print(x < 10)
else:
print("else")
False, False
True, False, else
True, True
True, True, else
What is the output of the following snippet?
x = "1"
if x == 1:
print("one")
elif x == "1":
if int(x) > 1:
print("two")
elif int(x) < 1:
print("three")
else:
print("four")
if int(x) == 1:
print("five")
else:
print("six")
six
four, five
one
two, five
What is the output of the following snippet?
x = 1
y = 1.0
z = "1"
if x == y:
print("one")
if y == int(z):
print("two")
elif x == y:
print("three")
else:
print("four")
one, two, three, four
four
one, two
two
