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 Collections (2016, retired 2019) Dungeon Game Win or Lose

while... else, is this syntax right

while playing: ......

else: if input("play again? [Y/n]").lower() != "n": game_loop()

2 Answers

Steven Parker
Steven Parker
229,644 Points

It looks like it might be, but indentation is so important in Python, it's impossible to be sure without formatting.

Use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:   Or watch this video on code formatting.

Commonly I know if...else pair, but I didn't come across with while...else, it seems in this video that else is paired with while, and this worked out.

Steven Parker
Steven Parker
229,644 Points

Python is the only language I know that allows an "else" after a loop. It is executed if and when the loop ends by failing the conditional expression. It is not executed if you "break" out of the loop.