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!
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
Shmuel Zilberman
1,409 Pointshelp err python
password = input("enter pass: ")
while password != shmulik: password = input("try agian")
print("welcome")
enter pass: s
Traceback (most recent call last):
File "review5.py", line 3, in <module>
while password != shmulik:
NameError: name 'shmulik' is not defined
I GET THIS ERR
1 Answer

KRIS NIKOLAISEN
54,940 Pointsshmulik should be in quotes
this
while password != shmulik:
should be:
while password != 'shmulik':
Shmuel Zilberman
1,409 PointsShmuel Zilberman
1,409 PointsThanks