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 Python Basics (Retired) Shopping List Shopping List Project

I do not understand the use of == (double equal sign.)

its not specific as to why they are being used.

2 Answers

Ernestas Sipavicius
Ernestas Sipavicius
6,327 Points

Double equal means equal to something. if (2 == 2) { //equal }else{ //not equal }

One = equal means you assign value to variable.

variable = "my Text";

Alicia Leslie
Alicia Leslie
4,209 Points

n = 5

if n == 5: print 'Yay!'

without the first n =5, the second n == 5 would be false and not print.