返回列表 發帖
out=""
with open("read (4).txt","r") as r:
    s=r.readline()
    for i in range(len(s)):
        out+=chr(ord(s[i])+2)
        
with open("write.txt", "w") as w:
    w.write(out)

TOP

返回列表