python系列--输出0x格式的十六进制输出

 

nums = input("请输入多个数,以空格分隔:")
num_list_bin = bytes(bytearray.fromhex(nums))

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

 

posted @ 2024-07-29 08:45  不折不扣  阅读(25)  评论(0编辑  收藏  举报