I am trying to convert a string of 0s and 1s (bits) into an integer.
I've tryied this:
str(int(bin(stringofOandI)))
and I've tried this too:
str(int(bin(str(stringofOandI))))
but none of these works
It is supposed to convert this (just an example): in the EntryField : 01001101 in the console: 77