AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
tango.py
根目录
/
benchmarks
/
e2e
/
tasks
/
explore-wide-defect
/
workdir
/
pkg
/
tango.py
1
def normalise(label):
2
"""Trim whitespace and drop a trailing colon."""
3
label = label.strip()
4
if label.endswith(":"):
5
label = label[:-1]
6
return label
7
7 lines
PYTHON