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
Join The Discussion
Comments (1)
Related Questions on Introduction to Python
What is Python primarily used for?
A. Web browsing
B. Data analysis
C. Video editing
D. Game development
Who developed Python Programming Language?
A. Wick van Rossum
B. Rasmus Lerdorf
C. Guido van Rossum
D. Niene Stom
Which of the following is an advantage of Python?
A. It compiles to machine code
B. It enforces strict typing
C. It has a large standard library
D. It requires extensive memory management
What is the role of the Python interpreter?
A. To convert Python code to assembly language
B. To manage memory allocation
C. To execute Python code line by line
D. To compile Python code into bytecode

but the keywords like True,False,None have starting letters capital know then how can all keywords in python are lowercase.