1

我在输入例如“a”时编写代码,他返回“h”。但是,如果我想返回字符数组,例如如果输入“aa”以返回“hh”,我该如何让它工作?

def input(s):
    for i in range(len(s)):
        ci = (ord(s[i])-90)%26+97
        s = "".join(chr(ci))
    return s 
4

3 回答 3

1

永远不要使用内置名称作为input

l = []


def input_x(s):
    for i in s:
        i = (ord(i)-90)%26+97
        l.append(chr(i))
    s = ''.join(l)
    return s
于 2017-09-22T08:25:55.797 回答
0
def input_x(s):
    result = ""
    for i in s:
        ci = (ord(i)-90)%26+ 97
        result += chr(ci)
    print(result)
于 2017-09-22T08:26:47.243 回答
0

您可以使用字符串来执行此操作。我的变量 finaloutput 是一个字符串,我将使用它来存储所有更新的字符。

def foo(s):
    finaloutput = ''
    for i in s:
        finaloutput += chr((ord(i)-90)%26+97)
    return finaloutput

此代码使用字符串连接将一系列字符加在一起。由于字符串是可迭代的,因此您可以使用上面显示的 for 循环而不是您使用的复杂循环。

于 2017-09-22T08:36:33.893 回答