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 trialMikael D.D
Courses Plus Student 2,080 PointsIssue with my control flow statement.
in the Taco Party example the continue statement does not want to cooperate with me today.... when I run it, it acts as if the continue statement was not even here. Did I mess up indentation ?? it looks okayish to me.
Can someone please point out what I'm I doing wrong here.
shopping_list = []
def show_help():
print("""
Enter 'DONE' to stop adding items.
Enter 'HELP' to get help.
Enter 'SHOW' to see your wish list.
""")
def add_to_list(item):
shopping_list.append(item)
print("We ADDED the item {} for you, There is {} items in your list ".format(item, len(shopping_list)))
def show_list():
print("Your List: ")
for item in shopping_list:
print(item)
show_help()
while True:
new_item = input(">")
if new_item.upper() == "DONE":
break
elif new_item.upper == "HELP":
show_help()
continue
elif new_item.upper == "SHOW":
show_list()
continue
add_to_list(new_item)
show_list()
1 Answer
Steven Parker
231,172 PointsThe "continue" is fine, but the command matches are not working because the call to the "upper()
" method is missing the parentheses after the method name (on two lines).
Remember that method or function calls must always have parentheses even when no arguments are being passed.
Mikael D.D
Courses Plus Student 2,080 PointsMikael D.D
Courses Plus Student 2,080 PointsOoops I see it now ...Thank you very much