i wrote code when input for example is "a" he return "h". But how i can make it work if i want to return array of characters, for example if is input "aa" to return "hh"?
def input(s):
for i in range(len(s)):
ci = (ord(s[i])-90)%26+97
s = "".join(chr(ci))
return s