Loading...
Inspect a short code sample, identify the faulty line, and deploy the correct patch.
def countdown():
for i in range(5, 0):
print(i)
print("Liftoff!")