Binary to Decimal in python
Python program to get binary number and convert it into decimal number.
Sample Input 1:
1010
Sample Output 1:
10
Program or Solution
decimal_val,base=0,1
binary_val=int(input("Enter a Binary number"))
while (binary_val > 0):
rem = binary_val % 10
decimal_val = decimal_val + rem * base
binary_val = binary_val // 10
base = base * 2
print(decimal_val)
Program Explanation
Yet to be updatedComments
Related Programs
- Print Natural numbers in pyhon
- Print Whole numbers in python
- Print ODD numbers in python
- Print Even numbers in python
- Print Natural numbers in reverse in python
- Sum of natural numbers in python
- N ODD numbers in python
- N Even numbers in python
- sum of Even numbers in python
- Sum of odd numbers in pyhton
- Sum of n numbers in python
- First digit of number in python
- First digit of number is odd or even in python
- Multiply without * operator in Python
- Multiplication Table in Python
- Multiplication Table in Python till M
- Sum of postive numbers in python
- Decimal to Binary in Python
- Factorial in Python
coming Soon
coming Soon