I can't decode this message: 01010010010001010101001101010101010001010100110001010100010011110010110101010100010000010101001001000101010000010011001000101101010011000100111101000111010010010100001101000001001011010100001000110010001100000011001000110000
I'd try with this, but I can't solve it. It says "Python int too large to convert to C int"
binaryString = input("Code: ")
bValues = binaryString.split(" ")
string = ""
for bValue in bValues:
integer = int(bValue, 2)
character = chr(integer)
string += character
print ("The message is: ")
print ("")
print(string)
print ("")
print ("Thanks!")
a1 = input("Press enter to exit.")
if a1 in ("x"):
exit()