KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

In Python, a variable name can consist of letters, digits, and underscore.

Getting Started

2 Likes

Answer

True

Reason — In Python, a variable name must start with a letter (capital or small) or an underscore (_), it can consist of letters, digits, and underscore only, variable names are case-sensitive, and Python keywords should not be used as variable names.

Answered By

2 Likes


Related Questions