11 lines
231 B
Python
11 lines
231 B
Python
|
def convertToBinary(n):
|
||
|
"""Function to print binary number
|
||
|
for the input decimal using recursion"""
|
||
|
if n > 1:
|
||
|
convertToBinary(n//2)
|
||
|
print(n % 2,end = '')
|
||
|
|
||
|
# decimal number
|
||
|
dec = 34
|
||
|
|
||
|
convertToBinary(dec)
|