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 trialDevdatta Pattnaik
101 PointsCan we print the list without creating a function
shopping_list = []
def add_to_list(item): shopping_list.append(item) if len(shopping_list) == 1: print("ADDED!! There is {} item in the list".format(len(shopping_list))) else: print("ADDED!! There are {} items in the list".format(len(shopping_list)))
def show_help(): print("What should we pick up at the store? ") print(""" Enter "DONE" to stop adding items. Enter "HELP" for this help. Enter "LIST" to see your complete list of items. """)
show_help()
while True: new_item = input("> ")
if new_item == "DONE":
break
elif new_item == "HELP":
show_help()
continue
elif new_item == "LIST":
for item in shopping_list:
print("* " + item)
else: add_to_list(new_item)
1 Answer
Brendon Butler
4,254 PointsShould be able to do this
print(shopping_list.toString());
In Java this prints out weird depending on the type of array or map. I'm sure it's similar for JavaScript. That's why people usually make functions for it. And they can format it however they wish.