Skip to content

Instantly share code, notes, and snippets.

@Hafpaf
Last active May 9, 2019 10:12
Show Gist options
  • Save Hafpaf/29dcb71105f87525c4af5392a6681650 to your computer and use it in GitHub Desktop.
Save Hafpaf/29dcb71105f87525c4af5392a6681650 to your computer and use it in GitHub Desktop.
IT-09-05-2019
def stuff(texty):
t = ""
for i in range(len(texty)):
ch = texty[i]
print(ch, ord(ch))
t = ch + t
print(t)
s = input("s: ")
stuff(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment