I am not a really experienced programmer. I apologize in advance should my question seem ridiculous to anyone. However, I tried running this piece of code:
path = '/bla/bla/bla'
if path is True:
print "True"
else:
print "False"
and it prints False. I thought Python treats anything with value as True. Can someone shine some light on this please?