Home »
Python »
Python Variables MCQs
Which of the following is an invalid variable name?
9. Which of the following is an invalid variable name?
- _a = 1000
- 100_ = 1000
- _90 = 1000
- a_ = 1000
Answer: B) 100_ = 1000
Explanation:
A variable name cannot start from a digit. It can start from the underscore.