https://markdown-1303167219.cos.ap-shanghai.myqcloud.com/57000045

伤心肠粉的酱油碟子

Python unittest 库

unittest 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 import unittest class TestStringMethods(unittest.TestCase): def test_upper(self): self.assertEqual('foo'.upper(), 'FOO') def test_isupper(self): self.assertTrue('FOO'.isupper()) self.assertFalse('Foo'.isupper()) def test_split(self): s = 'hello world' self.assertEqual(s.split(),

Python warnings 库

warnings Python 通过调用 warnings 模块中定义的 warn() 函数来发出警告。警告消息通常用于提示用户一些错误或者