6+ ~6 binary bit conversion python code example
Example 1: 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
Example 2: cast as float python
not_float = '.0975'
is_float = .0986
print(not_float)
print(is_float)
# Notice this won't work
# new_number = not_float + is_float
# This will convert it to a float
new_number = float(not_float) + is_float
print(new_number)