“Ejemplo de lista en Python” Código de respuesta

Cómo usar la lista en Python

seller = ['apple', 'banana', 'avocado'] # the list
new_item = 'kiwi' # new item in the store
seller.append(new_item) # now it's have been added to the list
LazyGoat

Ejemplo de lista en Python

# list of numbers
n_list = [1, 2, 3, 4]

# 1. adding item at the desired location
# adding element 100 at the fourth location
n_list.insert(3, 100)

# list: [1, 2, 3, 100, 4]
print(n_list)

# 2. adding element at the end of the list
n_list.append(99)

# list: [1, 2, 3, 100, 4, 99]
print(n_list)

# 3. adding several elements at the end of list
# the following statement can also be written like this:
# n_list + [11, 22]
n_list.extend([11, 22])

# list: [1, 2, 3, 100, 4, 99, 11, 22]
print(n_list)
Mohammed Basith

Respuestas similares a “Ejemplo de lista en Python”

Preguntas similares a “Ejemplo de lista en Python”

Más respuestas relacionadas con “Ejemplo de lista en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código