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 trialKnud Back
1,248 PointsRedo Last step in Python Basics
I am trying to solve the easy code challenge at the end of Python Basics the step "Python for Beginners". I want to isolate the errors by uncomment some of the lines using "#". The problem is that it works to will. The validation proces thinks I have solved the code challenge because there is no errors left.
My question is, how do a retake the challenge easily. Right now I have to exit "python basics" course and enter again to be able to retake the last step. Which is quit cumbersome if I just want to make small changes to the code.
1 Answer
Ramon Berke
637 PointsTry this, İ hope it helps
print("Hello") name = "Hello" print(name)
print("Let's do some math!") print("a")
print("Thanks for playing along!")