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)
En esta página del sitio puede ver el video en línea Python - Adding & Removing Items from Lists Tutorial de Duración hora minuto segunda en buena calidad , que subió el usuario Geek Tutorials 09 enero 2020, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 29,327 veces y le gustó 251 a los espectadores. Disfruta viendo!