示例#1
0
 def test_bcd_1(self):
     self.assertEqual(bcd(1), [0, 0, 1])
示例#2
0
 def test_bcd_255(self):
     self.assertEqual(bcd(255), [2, 5, 5])