El método Python List append() se usa para agregar y agregar elementos al final de List .
Sintaxis: list.append(item)
Parámetros:
- elemento: un elemento que se agregará al final de la lista
Devoluciones:
El método no devuelve ningún valor.
Ejemplo 1: agregar un elemento a la lista
Python
# my_list my_list = ['geeks', 'for'] # Add 'geeks' to the list my_list.append('geeks') print my_list
Producción:
['geeks', 'for', 'geeks']
Ejemplo 2: agregar lista a la lista
Python
# my_list my_list = ['geeks', 'for', 'geeks'] # another list another_list = [6, 0, 4, 1] # append another_list to my_list my_list.append(another_list) print my_list
Producción:
['geeks', 'for', 'geeks', [6, 0, 4, 1]]
Nota : una lista es un objeto. Si agrega otra lista a una lista, la lista de parámetros será un solo objeto al final de la lista.
Publicación traducida automáticamente
Artículo escrito por AmiyaRanjanRout y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA