返回 DeepSeek-Reasonix
normalizer.py
1 """Normalizes rows. Uses the reader; must not know about the writer."""
2
3 from pipeline import reader
4
5
6 def normalized(path):
7 return [row.strip().lower() for row in reader.read_rows(path)]
8
8 lines PYTHON