This commit is contained in:
deadsmond 2019-10-28 19:42:41 +01:00
parent a2cd6c4fef
commit a602f93bd3
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ alph_num_dict = {
def translate(text):
response = ""
for i in text.lower():
for i in text.lower()[::-1]:
response += alph_num_dict[i]
return response