第13673题 单选题
给定text.txt文件内容与Python文件读取代码,请填写第二个seek()的参数使程序输出"like"?

已知text.txt文件内容如下:

I like python
she is too

现有如下Python代码:

with open("text.txt", "r", encoding='utf-8') as f:
    f.seek(7)
    f.seek(          ,           )
    print(f.read(4))
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析