Learn Python, Microsoft 365 and Google Workspace
for loop:
if statement:
What is the purpose of nesting if statements?
mystery_loop()
is called? Explain why the loop terminates early.def mystery_loop():
x = 5
while x > 0:
print(x)
x -= 1
if x == 2:
break
print("Loop ended!")
check_value(7)
print? What happens if the order of the elif
statements is reversed?def check_value(n):
if n > 10:
print("A")
elif n > 5:
print("B")
elif n > 3:
print("C")
else:
print("D")
numbers = [1, 2, 3, 4]
for num in numbers:
if num % 2 == 0:
numbers.remove(num)
print(numbers)
a, b, c = True, False, True
if not a or b and c:
print("Case 1")
else:
print("Case 2")
def countdown(n):
while n > 0:
print(n)
n += 1
print("Blastoff!")
def is_leap_year(year):
if year % 4 == 0:
return True
elif year % 100 == 0:
return False
elif year % 400 == 0:
return True
else:
return False