C语言考题:Find the key in the picture,good luck..

str1="Find the key in the picture,good luck.."  
for i in range(256):
    for j in range(39):
        b=(ord(str1[j])^j)
        print bin(b)

原文地址:https://www.cnblogs.com/POP-w/p/7411087.html