Question Detail

BIO 107 While Loops & Control Flow Objective Question

Question

What mechanism does Python use to define what's inside a loop, according to the "Key Takeaways"?
Options
A Curly braces <code>{}</code>.
B Parentheses <code>()</code>.
C Indentation.
Correct Answer
D Keywords like <code>BEGIN</code> and <code>END</code>.
Correct Answer

Option C is the correct answer.

Detailed Explanation

The last key takeaway states: "Python uses Indentation to define what's inside the loop."

Hint

Python is known for its reliance on whitespace.

Question Info