用户在一行中输入一个包括大小写字母和数字的字符串,编程将其中的大写字母用字母表中该字母后的第5个字母替代,小写字母用字母表中该字母后的第3个字母替代,其他字符原样输出,实现字符串加密。 输入格式写代码python
时间: 2024-05-08 14:19:12 浏览: 153
加密算法实现字符串的加密
4星 · 用户满意度95%
```python
string = input()
new_string = ""
for char in string:
if char.isupper():
new_string += chr((ord(char) - 65 + 5) % 26 + 65)
elif char.islower():
new_string += chr((ord(char) - 97 + 3) % 26 + 97)
else:
new_string += char
print(new_string)
```
阅读全文