Skip to content

Instantly share code, notes, and snippets.

@Alexis117
Created September 5, 2018 01:22
Show Gist options
  • Save Alexis117/a3d2cccb580378bea5ef5091c006927a to your computer and use it in GitHub Desktop.
Save Alexis117/a3d2cccb580378bea5ef5091c006927a to your computer and use it in GitHub Desktop.
E1
#Python
#string='Cadena que quiero voltear'
rev_string=''
for i in reversed(string):
rev_string=rev_string + i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment