AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
test_half_up.py
根目录
/
benchmarks
/
e2e
/
tasks
/
nosol-contradictory-rounding
/
workdir
/
tests
/
test_half_up.py
1
import unittest
2
from money import round_half
3
4
5
class HalfUp(unittest.TestCase):
6
def test_two_point_five_always_rounds_up(self):
7
self.assertEqual({round_half(2.5) for _ in range(5)}, {3})
8
8 lines
PYTHON