Following variable definition is creating problem X = 0281, find reasons.
25 Likes
Python doesn't allow decimal numbers to have leading zeros. That is the reason why this line is creating problem.
Answered By
14 Likes
What is Dynamic Typing feature of Python ?
"Comments are useful and easy way to enhance readability and understandability of a program." Elaborate with examples.
What would the following code do : X = Y = 7 ?
What is the error in following code : X, Y = 7 ?