title | description | author | tags |
---|---|---|---|
Convert Binary to Decimal |
Converts a binary string to its decimal equivalent. |
axorax |
math,binary,decimal,conversion |
def binary_to_decimal(binary_str):
return int(binary_str, 2)
# Usage:
binary_to_decimal('1010') # Returns: 10
binary_to_decimal('1101') # Returns: 13