我的另一个问题是将二进制数字转换为十六进制的程序。我有运行良好的程序,但是尽管question and sample run
中要求用大写字母表示,但小写字母显示十六进制数字这是我的代码
def binaryToHex(binaryValue):
#convert binaryValue to decimal
decvalue = 0
for i in range(len(binaryValue)):
digit = binaryValue.pop()
if digit == '1':
decvalue = decvalue + pow(2, i)
#convert decimal to hexadecimal
hexadecimal=hex(decvalue)
return hexadecimal
def main():
binaryValue = list(input("Input a binary number: "))
hexval=binaryToHex(binaryValue)
hexa=h1.capitalize() #Tried to use capitalize() function but didn't worl
print("The hex value is",hexa[ 2:4]) #strips off the first 2 digits
main()
答案 0 :(得分:1)
由于这是相当合理的-这是一个相当Python的答案,希望可以作为以后问题的规范参考。
首先,只需将输入保留为字符串:
binary_value = input('Enter a binary number: ')
然后使用int
自变量为2的内置base
(表示将字符串解释为二进制数字)从字符串中获取整数:
number = int(binary_value, 2)
# 10001111 -> 143
然后,您可以使用f-string
打印带有格式说明符X
的电话号码,这意味着“十六进制带有大写字母,没有前缀”:
print(f'The hex value is {number:X}')
您的整个代码库将类似于(遵循两个功能和您的命名约定):
def binaryToHex(binaryValue):
number = int(binaryValue, 2)
return format(number, 'X')
def main():
binaryValue = input('Enter a binary number: ')
print('The hex value is', binaryToHex(binaryValue))
main()
答案 1 :(得分:0)
您犯的一个错误是h1在代码中不存在,但仍然存在。
字符串上的.upper()将其更改为大写
def main():
binaryValue = list(input("Input a binary number: "))
hexval=binaryToHex(binaryValue)
hexa=hexval.upper()
print("The hex value is",hexa[ 2:4]) #strips off the first 2 digits
输出:
Input a binary number: 10001111
The hex value is 8F
答案 2 :(得分:0)
只需执行一个功能...
def binaryToHex():
binval = input('Input a binary number : ')
num = int(binval, base=2)
hexa = hex(num).upper().lstrip('0X')
print(f'The hex value is {hexa}')