python密码破解程序求解利用ord函数和chr函数,谢谢
def dec(s): res = "" for i in s: res += chr(ord(i)-5) return res print(dec("ixo678"))