Skip whitespace characters between pairs of hex numbers. This makes `bytes.fromhex()` compatible with cpython. Includes simple test in `tests/basic/builtin_str_hex.py`. Signed-off-by: Glenn Moloney <glenn.moloney@gmail.com>glenn20 committed Jul 21, 2023 1 parent 9fb56d1 commit 6e1e4d...
hex_str=input("请输入十六进制字符串:") 1. 这段代码将提示用户输入一个十六进制字符串,并将其保存在变量hex_str中。 步骤二:将十六进制字符串转换为字节流 接下来,我们需要将十六进制字符串转换为字节流。可以使用Python的内置函数bytes.fromhex()来完成这个转换: byte_data=bytes.fromhex(hex_str) 1. 这行...