COMPUTER FUNDAMENTALS

EMERGING TRENDS IN COMPUTING

ARTIFICIAL INTELLIGENCE AND MACHINE LEARNING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
All keywords in Python are in ____
A
lower case
B
UPPER CASE
C
Capitalized
D
None of the above
Explanation: 

Detailed explanation-1: -We cannot use a keyword as a variable name, function name, or any other identifier. They are used to define the syntax and structure of the Python language. All the keywords except True, False and None are in lowercase and they must be written as they are.

Detailed explanation-2: -True, False and None keywords are capitalized while the other keywords are in lower case in Python. In Python, keywords are case sensitive.

There is 1 question to complete.