Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

reverse string python

Texto=input("Ingrese alguna palabra o texto
")
TextoReverse = Texto[::-1] #iterable[inicio:fin:paso]
print(TextoReverse)
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #reverse #string #python
ADD COMMENT
Topic
Name
9+8 =