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 trialRo Joshi
Courses Plus Student 836 PointsWHY IS THIS CODE NOT WORKING????
shopping_list = []
print("Make any list! To do, shopping list, snd many more!")
print("When you are done type 'DONE' to continue")
while True:
new_item = input("> ")
if new_item == 'Done':
break
shopping_list.append(new_item)
print("Here's your list:")
for item in shopping_list:
print(item)
I do not know why this code is not working.
[MOD: added ```python formatting -cf]
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsThe if
code and the append
statement are not inside the while
loop. The loop has no exit and runs forever.
Indent the if
code and the append
statement to be inside the while
loop.