الرجوع
تسجيل الدخول

What is the output of the following Python program?

number = 25
if number < 20:
    print("Below 20")
elif number < 30:
    print("Below 30")
print("Checking complete.")