AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
tables.py
根目录
/
benchmarks
/
verification-stress
/
tasks
/
vs-pos-tempconv
/
workdir
/
tables.py
1
import convert
2
3
def band(c):
4
f = convert.c_to_f(c)
5
if f >= 90:
6
return "hot"
7
if f >= 60:
8
return "warm"
9
return "cold"
10
10 lines
PYTHON