python系列--輸出0x格式的十六進位制輸出

不折不扣發表於2024-07-29

nums = input("請輸入多個數,以空格分隔:")
num_list_bin = bytes(bytearray.fromhex(nums))

for num in num_list_bin:
    print(hex(num),",", end=" ")

相關文章