Después de tanto luchar hemos encontrado la contestación de este dilema que muchos los usuarios de nuestro sitio web han tenido. Si tienes algún dato que compartir no dejes de compartir tu conocimiento.
Ejemplo 1: Python reverse string
'String'[::-1]#-> 'gnirtS'
Ejemplo 2: imprimir array en python inverso
>>> lst =[1,2,3,4,5]>>> lst[::-1][5,4,3,2,1]
Ejemplo 3: invertir en python 3
# create list of integers or strings
number =[1,2,3,4,5]# pass the values using the reverse method.
number.reverse()# Then print the variable as such:print(number)
Ejemplo 4: imprimir Python al revés
encrypted_message ="!XgXnXiXcXiXlXsX XnXoXhXtXyXpX XgXnXiXnXrXaXeXlX XmXaX XI"
encrypted_message[-1:0:-2]
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)