CBSE Class 12 Computer Science Question 3 of 105

Python Revision Tour — Question 3

Back to all questions
3
Question

Question 3

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

(d)

Assertion is false but Reason is true.

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