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 All Together Now Branch and Loop

I am making a small game an I want to know how do I keep loping it until they get the right answer?

first_name = input("hello there, what is your first name   ")
if first_name == "ol, tate":
    print("Guess what, thats the correct name you win!!!")
else:
    print("bummer! not correct")

[MOD: Added ```python formatting -cf]

1 Answer

Hi, there I have looked into your problem and come up with the solution below! In this solution, we ask for the name before it enters the loop and again only if they get it wrong.

If they guess right they will exit the loop and get the winner's statement.

Hope this helps!

first_name = input("hello there, what is your first name   ")
while first_name != "ol, tate":
      print("bummer! not correct")
      first_name = input("hello there, what is your first name   ")
print("Guess what, thats the correct name you win!!!")