Julio, miembro de este gran staff, nos hizo el favor de redactar este post ya que conoce perfectamente este tema.
Ejemplo 1: cómo invertir un string en pitón
# in order to make a string reversed in python # you have to use the slicing as following
string ="racecar"print(string[::-1])
Ejemplo 2: inversa string método pitón
#lineardefreverse(s):str=""for i in s:str= i +strreturnstr#splicing'hello world'[::-1]#reversed & joindefreverse(string):
string ="".join(reversed(string))return string
Sección de Reseñas y Valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)