import ord def mc(s): s=s.lower() new_str = "" for char in s: if char.isalpha(): new_char = chr((ord(char.lower()) - 97 + 3) % 26 + 97) new_str += new_char else: new_str += char return new_str input_str = input() encrypted_str = mc(input_str) print(encrypted_str) 这个代码哪里错了
时间: 2024-01-30 11:02:25 浏览: 171
android-push-server-tomcat.rar_andrewsjavaweb_android tomcat_ord
这个代码的问题在于`import ord`语句不正确,应该修改为`from builtins import ord`,另外需要在第一行加入`#`符号表示注释。下面是修改后的代码:
```
# 正确的import语句
from builtins import ord
def mc(s):
s = s.lower()
new_str = ""
for char in s:
if char.isalpha():
new_char = chr((ord(char.lower()) - 97 + 3) % 26 + 97)
new_str += new_char
else:
new_str += char
return new_str
input_str = input()
encrypted_str = mc(input_str)
print(encrypted_str)
```
这样就可以正确地运行这个脚本了。
阅读全文