eight character (zero and one) string -> turn it into 8 bit binary number -> perform binary operation -> turn back into 8 0/1 string
>>> the_entry = "00000000" >>> the_binary number = 8CharacterStringIntoThe8CharacterBinaryNumber(the_entry) >>> the_binary_number << 1 # any binary operation >>> the_result_string = EightCharacterBinaryNumberIntoEightCharacterString(the_binary_number) this is soo simple, I refuse to write my own method, but obviously, in th 180000 possible results, I cannot find the one related to my question.
Do you hold the magic??