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) Lists Removing Items From A List

Hadi Farhat
Hadi Farhat
10,678 Points

use "if item in shopping_list" instead of "try except" ...

What is the difference between my code

def remove_item_from_list():
    item_to_be_removed = input("What do you want to remove?\n> ")
    if item_to_be_removed in shopping_list:
        shopping_list.remove(item_to_be_removed)
    else:
        print("{} is not in your list".format(item_to_be_removed))

and your code which uses try and except method

Using a simple condition statement (your code) would not raise an error. Using the try and except method does. This is more important when you can have errors that crash your program if not caught and handled by the try/except block.