Report Bug
Qus : Which of the following is incorrect regarding variables in Python?
Qusपायथन में वेरिएबल्स के संबंध में निम्नलिखित में से कौन सा गलत है?

A. Variable names in Python cannot start with number. However, it can contain number in any other position of variable name.
B. Variable names can start with an underscore.
C. Data type of variable names should not be declared.
D. None of the above.


Solution
D. None of the above.






Report Bug