Computer Science, asked by Adityaaditi440, 4 months ago

what is undefined value in python ​

Answers

Answered by neeru4063
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