import savestring = ""with open("image.jpg", "rb") as f: byte = f.read(1) while byte != b"": byte = f.read(1) print ((byte))我得到像这样的字节:b'\x00'我该如何摆脱b''呢?假设我想将字节保存到列表中,然后将该列表再次保存为同一图像。我该如何进行?
添加回答
举报
0/150
提交
取消