AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
rows.py
根目录
/
benchmarks
/
e2e
/
tasks
/
explore-unreachable
/
workdir
/
lib
/
rows.py
1
from lib.textutil import normalize
2
3
4
def parse_row(line):
5
return [field for field in normalize(line).split(";") if field]
6
6 lines
PYTHON