AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
reader.py
根目录
/
benchmarks
/
e2e
/
tasks
/
document-dependency-direction
/
workdir
/
pipeline
/
reader.py
1
"""Reads raw rows. Depends on nothing else in this package."""
2
3
4
def read_rows(path):
5
with open(path) as f:
6
return [line.rstrip("\n") for line in f]
7
7 lines
PYTHON