import save
string = ""
with open("image.jpg", "rb") as f:
byte = f.read(1)
while byte != b"":
print ((byte))
我得到像这样的字节:
b'\x00'
我该如何摆脱b''呢?
假设我想将字节保存到列表中,然后将该列表再次保存为同一图像。我该如何进行?
冉冉说
相关分类