A variable name in Python cannot start with a _______.
- Letter
- Number
- Special
- Underscore
In Python, variable names cannot start with a number, as they must begin with a letter or an underscore (_).
Loading...
Related Quiz
- The ____ attribute in a Matplotlib Axes object represents the y-axis.
- In which data structure are elements connected using pointers to form a sequence?
- In object-oriented programming, ____ refers to the bundling of data and methods that operate on that data into a single unit.
- Which Python object can be used to create a simple context manager without defining a class?
- Which of the following is not typically a use case for the with statement in Python?