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 trialmarlon reynolds
Python Development Techdegree Student 807 PointsPython - High score counter
How do i create a High Score tracker that displays the best score at all times for example, i am trying to create the hangman game, and whoever guesses the correct word within the fewest attempts wins. i don't know where to start
1 Answer
Megan Amendola
Treehouse TeacherHi marlon reynolds !
I think this is a great way to test your skills! I just want to give a hint at one possible solution -> in Python, you have both min()
and max()
functions that can help find either the lowest or highest number. You can read about how they work here.