韩良


私信TA

用户名:uq_26535520975

访问量:445

签 名:

等  级
排  名 9334
经  验 1164
参赛次数 1
文章发表 2
年  龄 21
在职情况 学生
学  校 泰山学院
专  业 数据科学与大数据技术

  自我简介:

TA的其他文章

解题思路:
通过ASCII码进行计算

A~V-->E~Z

W~Z-->a~d

a~v-->e~z

w~z-->A~D
注意事项:

参考代码:

temp=input()
for i in temp:
   temp1=ord(i)
   if temp1 in range(65,87) or range(97,119):
       temp2=temp1+4
   if temp1 in range(87,91):
       temp2=temp1+10
   if temp1 in range(119,123):
       temp2=temp1-54
   print(chr(temp2),end='')

 

0.0分

4 人评分

  评论区

  • «
  • »