“Imprima Python hacia atrás” Código de respuesta

Cómo revertir una cadena en Python

# in order to make a string reversed in python 
# you have to use the slicing as following

string = "racecar"
print(string[::-1])
Tejas Naik

Cómo imprimir una cadena por reverso en Python

s = "001100"
for x in s[len(s)-1::-1]:
    print(x)
Excited Earthworm

Imprima Python hacia atrás

encrypted_message = "!XgXnXiXcXiXlXsX XnXoXhXtXyXpX XgXnXiXnXrXaXeXlX XmXaX XI"
encrypted_message[-1:0:-2]
Lonely Lizard

Respuestas similares a “Imprima Python hacia atrás”

Preguntas similares a “Imprima Python hacia atrás”

Más respuestas relacionadas con “Imprima Python hacia atrás” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código