摘要: ### 二进制模式下读写操作 ```python # with open('a.txt', 'r', encoding='utf-8') as f: # print(f.read(5)) with open('a.txt', 'rb') as f: # print(f.read().decode(' 阅读全文
posted @ 2023-09-05 16:44 jntmwl 阅读(21) 评论(0) 推荐(0)