灿砸


私信TA

用户名:xiboliyalang

访问量:1080

签 名:

等  级
排  名 4710
经  验 1648
参赛次数 0
文章发表 10
年  龄 23
在职情况 学生
学  校 东北师范大学
专  业 软件工程

  自我简介:

TA的其他文章

解题思路:
第二个ord函数,直接在内部取膜就好,就可以直接取到第一个了
注意事项:
111
参考代码:

s = input()
s1 = ''
for i in range(len(s)):
    s1 += chr(ord(s[i])+ord(s[(i+1)%len(s)]))
print(s1)


 

0.0分

2 人评分

  评论区

c=str(input())
ls=str()
count=0
while (count)<len(c):
    a=chr(ord(c[count])+ord(c[(count+1)%len(c)]))
    ls+=a
    count+=1
print("".join(ls))
是这样,刚才复制错了,这样为什么会错
2024-02-06 21:19:12
c=str(input())
ls=str()
count=0
while (count)<len(c):
    a=chr(ord(c[count])+ord(c[(count+1)%len(c)]))
    ls+=a
print(ls)
请问这样写为什么会错
2024-02-06 21:13:27
  • «
  • 1
  • »