CBSE Class 12 Computer Science Question 4 of 105

Python Revision Tour — Question 4

Back to all questions
4
Question

Question 4

Assertion. if and for are legal statements in Python.

Reason. Python is case sensitive and its basic selection and looping statements are in lower case.

Answer

(a)

Both Assertion and Reason are true and Reason is the correct explanation of Assertion.

Explanation
if is conditional statement and for is loop statement. Python is case sensitive and its selection and looping statements are in lower case.