Decimal to Binary in Python
Python program to get decimal number and convert it into binary.
Sample Input 1:
11
Sample Output 1:
1011
Program or Solution
binary_num,base=0,1
decimal_num=int(input("Enter a Decimal number:"))
while (decimal_num > 0):
remainder = decimal_num % 2
binary_num = binary_num + remainder * base
decimal_num = decimal_num // 2
base = base * 10
print(binary_num)
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
- Binary to Decimal in python
- Factorial in Python
coming Soon
coming Soon