Python: Binary To Decimal Conversion
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Convert binary string to int
号
如何在python中将这个二进制值"10101111"转换为十进制形式?
函数将二进制数转换为十进制数。
输入:字符串B:二进制数
输出:int d:b的十进制表示
1 2 3 | def Binary_to_Decimal(b): #what needs to be filled in return d |
您可以使用int casting,它允许基本规范。
1 | int(b, 2) # Convert a binary string to a decimal int. |