I have a method that sometimes returns a NoneType value. So how can I question a variable that is a NoneType? I need to use if method, for example
if not new:
new = '#'
I know that is the wrong way and I hope you understand what I meant.
So how can I question a variable that is a NoneType?
Use is operator, like this
if variable is None:
Why this works?
Since None is the sole singleton object of NoneType in Python, we can use is operator to check if a variable has None in it or not.
Quoting from is docs,
The operators
isandis nottest for object identity:x is yis true if and only ifxandyare the same object.x is not yyields the inverse truth value.
Since there can be only one instance of None, is would be the preferred way to check None.
Hear it from the horse's mouth
Quoting Python's Coding Style Guidelines - PEP-008 (jointly defined by Guido himself),
Comparisons to singletons like
Noneshould always be done withisoris not, never the equality operators.
It can also be done with isinstance as per Alex Hall's answer :
>>> NoneType = type(None)
>>> x = None
>>> type(x) == NoneType
True
>>> isinstance(x, NoneType)
True
isinstance is also intuitive but there is the complication that it requires the line
NoneType = type(None)
which isn't needed for types like int and float.
As pointed out by Aaron Hall's comment:
Since you can't subclass
NoneTypeand sinceNoneis a singleton,isinstanceshould not be used to detectNone- instead you should do as the accepted answer says, and useis Noneoris not None.
Original Answer:
The simplest way however, without the extra line in addition to cardamom's answer is probably:isinstance(x, type(None))
So how can I question a variable that is a NoneType? I need to use if method
Using isinstance() does not require an is within the if-statement:
if isinstance(x, type(None)):
#do stuff
Additional information
You can also check for multiple types in one isinstance() statement as mentioned in the documentation. Just write the types as a tuple.
isinstance(x, (type(None), bytes))
Not sure if this answers the question. But I know this took me a while to figure out. I was looping through a website and all of sudden the name of the authors weren't there anymore. So needed a check statement.
if type(author) == type(None):
print("my if body")
else:
print(" my else body")
Author can be any variable in this case, and None can be any type that you are checking for.
Noneis the only value your method returns for whichbool(returnValue)equalsFalse, thenif not new:ought to work fine. This occurs sometimes in the built-in libs - for example,re.matchreturns either None or a truthy match object. - KevinnullandNonein python here. - Michael Ekoka