Sum of two binary number in python by R4R Team

Binary number

-It is a number which expressed in the base-2 numeral system,
-Binary numbers are 0 or 1.

Addition of two binary number -

Example-

b1=1010 // 10 in decimal
b2=101 // 5 in decimal
then sum of b1 and b2 is 1111 // 15 in decimal

program -

print("Enter first binary number")
n=input()
print("Enter second binary number")
m=input()

s=bin(int(n,2)+int(m,2))
print("Addition of two binary number is - "+s)


output -

Enter first binary number
1011
Enter second binary number
1010
Addition of two binary number is - 0b10101


-In this program, firstly we take two input,
- int(n,2) derive the decimal equivalent so we find the decimal of both the number then add
- then using the bin() function we convert the decimal number into binary again. and this is the required ans.



Leave a Comment:
Search
Categories
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!