122Ml 发表于 2023-9-25 18:06:08

Python字符串反码.2

#/ -*- coding:utf-8 -*-
s=input()
i=0
j=0
len=len(s)

str0=*len
      
while(i<len):
    if(s.isalpha()):
            if(65<=ord(s) and ord(s)<=77):
                temp1=ord(s)
                temp2=ord('Z')-(temp1-ord('A'))
                str0=s.replace(s,str(temp2))
                str0=chr(int(str0))
                i+=1
            elif(78<=ord(s) and ord(s)<=90):
                temp1=ord(s)
                temp2=ord('A')+(ord('Z')-temp1)
                str0=s.replace(s,str(temp2))
                str0=chr(int(str0))
                i+=1
            elif(97<=ord(s) and ord(s)<=109):
                temp1=ord(s)
                temp2=ord('z')-(temp1-ord('a'))
                str0=s.replace(s,str(temp2))
                str0=chr(int(str0))
                i+=1
            elif(110<=ord(s) and ord(s)<=122):
                temp1=ord(s)
                temp2=ord('a')+(ord('z')-temp1)
                str0=s.replace(s,str(temp2))
                str0=chr(int(str0))
                i+=1
            else:
                i+=1
    else:
      str0=s
      i+=1
for test in str0:
    print(test,end='')




输入:学好Python,用Coding建设祖国
期望输出:中文保留,英文字符进行反码
实际输出:00Kbgslm,0Xlwrmt0000

求大佬解答其中原因!!!

isdkz 发表于 2023-9-25 18:06:32

这段代码的目的是将输入的字符串中的英文字符进行反码处理,保留中文字符不变。

问题出在对于英文字符的反码处理上。代码中使用了replace()方法来替换字符,然后再将替换后的字符串转换为整数,最后再转换为字符。这样的处理方式是不正确的。

正确的处理方式是使用ord()函数获取字符的ASCII码,然后根据ASCII码进行反码处理,最后再将反码转换为字符。

以下是修正后的代码:

s = input()
str0 = []

for ch in s:
    if ch.isalpha():
      if 'A' <= ch <= 'M':
            temp1 = ord(ch)
            temp2 = ord('Z') - (temp1 - ord('A'))
            str0.append(chr(temp2))
      elif 'N' <= ch <= 'Z':
            temp1 = ord(ch)
            temp2 = ord('A') + (ord('Z') - temp1)
            str0.append(chr(temp2))
      elif 'a' <= ch <= 'm':
            temp1 = ord(ch)
            temp2 = ord('z') - (temp1 - ord('a'))
            str0.append(chr(temp2))
      elif 'n' <= ch <= 'z':
            temp1 = ord(ch)
            temp2 = ord('a') + (ord('z') - temp1)
            str0.append(chr(temp2))
      else:
            str0.append(ch)
    else:
      str0.append(ch)

result = ''.join(str0)
print(result)


这样修改后,输入 "学好Python,用Coding建设祖国",输出结果为 "学好Kbgslm,用Xlwrmt建设祖国",符合预期的结果。

122Ml 发表于 2023-9-25 18:10:14

isdkz 发表于 2023-9-25 18:06
这段代码的目的是将输入的字符串中的英文字符进行反码处理,保留中文字符不变。

问题出在对于英文字符的 ...

感谢!
页: [1]
查看完整版本: Python字符串反码.2