“Cómo invertir una lista en Python” Código de respuesta

Lista inversa Python

>>> the_list = [1,2,3]
>>> reversed_list = the_list.reverse()
>>> list(reversed_list)
[3,2,1]

OR

>>> the_list = [1,2,3]
>>> the_list[::-1]
[3,2,1]
Thoughtful Trout

Cómo invertir una lista en Python

# Use the reversed function:
xs = [0, 10, 20, 40]
for i in reversed(xs):
  print(i)

# To get a reversed list:
list(reversed(xs))
[40, 20, 10, 0]
codeconnoisseur

Lista inversa Python

list=[1,2,3]
list[::-1]
Godhacked

Invertir la lista Python


# Making a new list
myList = [1,2,3,4]
# Inverting the list
myList = myList[::-1]
Anxious Aardvark

Respuestas similares a “Cómo invertir una lista en Python”

Preguntas similares a “Cómo invertir una lista en Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código