Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Understanding Truthy & Falsy in Python

To determine whether I'm right, do 'truthy' values refer to the objects used in a boolean context and not so much the boolean value that returns true or false?

1 Answer

I would say that's right. Next time you're in a Python shell, try to coerce a boolean value out of some python objects to get a feel for "truthy" and "falsy". Take these as an example:

>>> bool([])
False
>>> bool([1])
True
>>> bool('')
False
>>> bool('hello')
True