Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question 14 given the following, which part is the condition? if age < …

Question

question 14 given the following, which part is the condition? if age < 12: print(\discount for children available\) age age < 12 print(\discount for children available\)

Explanation:

Brief Explanations

In Python's if - statement, the part after 'if' is the condition. Here, 'age < 12' is the condition that determines whether the print statement will execute.

Answer:

B. age < 12