A variable name in Python must start with an ______ or underscore.
Answers
Answered by
2
A variable name in Python must start with a letter or underscore.
Answered by
0
Answer:
Variable names should not start with a number. 5. Why are local variable names beginning with an underscore discouraged? Explanation: As Python has no concept of private variables, leading underscores are used to indicate variables that must not be accessed from outside the class.
Similar questions