Week 7 Assignment 1

Deadline 13 or 14
Anonymous
python
03/13/2024 5:25 PM
244 B
19
Indexable
str = input().lower()

decoded_list = []
for char in str:
  base = ord('a') + ord('z')
  char = chr(base - ord(char))
  decoded_list.append(char)

print(''.join(decoded_list))
Editor is loading...
Leave a Comment