what is undefined value in python
Answers
Answered by
1
Answer:
In Python, all variables are expected to be defined before use. The None object is a value you often assign to signify that you have no real value for a variable, as in: try: x except NameError: x = None.
Similar questions