You have this list:
python
items = ["pen", "book", "eraser", "ruler"]
Read an item name from input, remove that item from the list, and print the updated list.
Example input:
text
book
Example output:
text
['pen', 'eraser', 'ruler']
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python