Skip to main content

Definitions by tigerthink

Falsy is actually an important technical term in computer programming. A falsy value is one that will not cause an conditional block to activate.
#Python code

if {}:

print "This will not get printed, because {} (the empty dictionary) is falsy."
falsy by tigerthink January 23, 2010