pintia凯撒密码
时间: 2023-12-12 09:35:15 浏览: 81
凯撒密码
以下是使用Python实现的Pintia凯撒密码的例子:
```python
# 获取输入的字符串和偏移量
s = input()
offset = int(input())
# 定义字母表
alphabet = 'abcdefghijklmnopqrstuvwxyz'
# 加密字符串
result = ''
for c in s:
if c.isalpha():
# 获取字符在字母表中的位置
index = alphabet.index(c.lower())
# 根据偏移量计算新位置
new_index = (index + offset) % 26
# 根据新位置获取新字符
new_c = alphabet[new_index]
# 保持原字符的大小写形式
if c.isupper():
new_c = new_c.upper()
result += new_c
else:
result += c
# 输出加密后的字符串
print(result)
```
阅读全文