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 The Solution: For Loops

if person[2]:

How is the top code the same as the bottom?

if person[2]:
----------------------------------------
if person[2] == True:

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Good question! If an object is used in a Boolean context, its β€œtruthiness” is evaluated.

An empty list, an empty set, an empty dict, the value 0 are have a truthiness of False. Otherwise, they are considered True.

In person[2] == True, the object person[2] is evaluated for truthiness first, then it is compared to True. But since you already have its truthiness, you can use it directly as the Boolean value!

If you needed the opposite condition, you can use if not person[2]:

Post back if you need more help. Good luck!!!