摘要: 1 s = input("输入:") 2 result = '' 3 for i in range(len(s)): 4 result += chr(ord(s[i])^2000) 5 print(result) ord(char) #把字符转换成unicode编码(整型) chr(unicode) 阅读全文
posted @ 2017-12-06 00:22 Alos403 阅读(262) 评论(0) 推荐(0) 编辑