Answers for "python binary to normal"

0

how to convert binary to integer in python

def binary2int(binary): 
    int_val, i, n = 0, 0, 0
    while(binary != 0): 
        a = binary % 10
        int_val = int_val + a * pow(2, i) 
        binary = binary//10
        i += 1
    print(int_val) 
    

binary2int(101)
Posted by: Guest on November-29-2021

Code answers related to "python binary to normal"

Python Answers by Framework

Browse Popular Code Answers by Language