#byte.py w=b"\x74\x61\x69\x70\x65\x69" print(w) a=bytes.fromhex("746169706569") print(a) print(type(a)) bytearr = bytearray(a) print(bytearr) ...
確定! 回上一頁