0
Can we declare an empty variable? How?
be it any any data type, I want to store its value later in the program
1 Answer
+ 2
variable = None
the None object represents the absence of a value.
be it any any data type, I want to store its value later in the program