Practice question from Python Fundamentals

Complete the conditional statement:

age = 15
____ age < 18:
    print("Minor")

Answer

if

Explanation

The 'if' keyword starts a conditional statement in Python. It evaluates the condition (age < 18) and executes the indented block if the condition is True.

More questions from Python Programming