第11339题 判断
给定Python代码能否正确读取二进制文件并获取前10个字节?
with open('data.bin', 'r', encoding='utf-8') as f:
    data = f.read(10)
A

正确

B

错误

提交0次 正确率0.00%
答案解析