Tagged Questions
2
votes
4answers
96 views
python3: How to get logical complement (negation) of a binary number, eg. '010' => '101'?
Maybe I'm missing something but I can't find a straightforward way to accomplish this simple task. When I go to negate a binary number through the "~" operator it returns a negative number due to the ...