Pythonic way to check if something exists?
Pythonic way to check if something exists?
--
Become part of the top 3% of the developers by applying to Toptal
https://topt.al/25cXVn
--
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 2
--
Chapters
00:00 Question
00:38 Accepted answer (Score 189)
01:05 Answer 2 (Score 37)
01:44 Answer 3 (Score 6)
02:04 Answer 4 (Score 5)
03:12 Thank you
--
Full question
https://stackoverflow.com/questions/9390...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #ifstatement
#avk47
ANSWER 1
Score 46
I think you have to be careful with your terminology, whether something exists and something evaluates to False are two different things. Assuming you want the latter, you can simply do:
if not var:
print 'var is False'
For the former, it would be the less elegant:
try:
var
except NameError:
print 'var not defined'
I am going to take a leap and venture, however, that whatever is making you want to check whether a variable is defined can probably be solved in a more elegant manner.
ANSWER 2
Score 8
If this is a dictionary, you can have
mydict['ggg'] = '' // doesn't matter if it is empty value or not.
if mydict.has_key('ggg'):
print "OH GEESH"
However, has_key() is completely removed from Python 3.x, therefore, the Python way is to use in
'ggg' in mydict # this is it!
# True if it exists
# False if it doesn't
You can use in for tuple, list, and set as well.
Of course, if the variable hasn't been defined, you will have to raise an exception silently (just raise any exception... let it pass), if exception is not what you want to see (which is useful for many applications, you just need to log the exception.)
It is always safe to define a variable before you use it (you will run into "assignment before local reference" which means " var is not in the scope " in plain English). If you do something with query, the chance is, you will want to have a dictionary, and checking whether a key exists or not, use in .
ANSWER 3
Score 6
To check if a var has been defined:
var = 2
try:
var
except NameError:
print("No var")
To check if it is None/False
if var is None
...or
if not var
ANSWER 4
Score 5
if not var:
#Var is None/False/0/
if var:
#Var is other then 'None/False/0'
in Python if varibale is having any value from None/False/0 then If var condition will fail...
and for other objects it will call __nonzero__ pythonic method which may return True or False depending on its functionality.