Learn how to add and remove items from a list in Python.
⭐ Kite is a free AI-powered coding assistant that will help you code faster and smarter. The Kite plugin integrates with all the top editors and IDEs to give you smart completions and documentation while you’re typing. I've been using Kite for 6 months and I love it! https://www.kite.com/get-kite/?utm_me...
~ CODE ~
ADDING ITEMS TO LIST
shopping_list = ["apples", "bananas", "carrots", "potatoes"]
item = input("What item would you like to add to the shopping list: ")
shopping_list.append(item)
print(shopping_list)
REMOVING ITEMS FROM LIST
shopping_list = ["apples", "bananas", "carrots", "potatoes"]
item = input("What item would you like to remove from the shopping list: ")
shopping_list.remove(item)
print(shopping_list)
На этой странице сайта вы можете посмотреть видео онлайн Python - Adding & Removing Items from Lists Tutorial длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Geek Tutorials 09 Январь 2020, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 29,327 раз и оно понравилось 251 зрителям. Приятного просмотра!