All keywords in Python are in . . . . . . . .
A. Capitalized
B. lower case
C. UPPER CASE
D. None of the mentioned
Answer: Option B
Solution (By Examveda Team)
All keywords in Python are in lower case.Python's keywords, such as "if," "else," "for," "while," and others, are reserved words that have special meanings and purposes within the language. By convention, Python's keywords are all written in lowercase letters. This consistent style helps maintain readability and consistency across Python codebases
but the keywords like True,False,None have starting letters capital know then how can all keywords in python are lowercase.