Answers for "python int as binary"

9

convert int to binary python

# Python program to convert decimal to binary 
    
# Function to convert Decimal number  
# to Binary number  
def decimalToBinary(n):  
    return bin(n).replace("0b", "")  
    
# Driver code  
if __name__ == '__main__':  
    print(decimalToBinary(8))  
    print(decimalToBinary(18))  
    print(decimalToBinary(7))  
    
Output:
1000
1001
Posted by: Guest on April-04-2020
9

convert int to binary python

# Python program to convert decimal to binary 
    
# Function to convert Decimal number  
# to Binary number  
def decimalToBinary(n):  
    return bin(n).replace("0b", "")  
    
# Driver code  
if __name__ == '__main__':  
    print(decimalToBinary(8))  
    print(decimalToBinary(18))  
    print(decimalToBinary(7))  
    
Output:
1000
1001
Posted by: Guest on April-04-2020
1

convert number to binary in python

bin(6)[2:]  
'110'

# bin() converts to binary, but leaves 0b as the start of the string, remove it
Posted by: Guest on September-06-2021
1

convert number to binary in python

bin(6)[2:]  
'110'

# bin() converts to binary, but leaves 0b as the start of the string, remove it
Posted by: Guest on September-06-2021

Python Answers by Framework

Browse Popular Code Answers by Language