Python: Binary To Decimal Conversion

126,216

You can use int casting which allows the base specification.

int(b, 2)  # Convert a binary string to a decimal int.
Share:
126,216

Related videos on Youtube

Aaron Porter
Author by

Aaron Porter

Updated on July 13, 2020

Comments

  • Aaron Porter
    Aaron Porter almost 4 years

    Possible Duplicate:
    Convert binary string to int

    How would I convert this binary value '101011111' to decimal form in Python?

    The function converts binary numbers into decimal numbers.

    Inputs: string b: a binary number

    Outputs: int d: a decimal representation of b

    def Binary_to_Decimal(b):
        #what needs to be filled in
        return d