Back
Close

ones_complement.py

roshstar1999
2,062 views

#to find one's complement

num=5

temp=num

bit=1

while temp:

num=num^bit #Xoring 1 with each bit once in a loop
bit<<=1     
temp>>= 1

print(num)

Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io