• 这些是我最近学习Python的知识记录,如果有错的地方,欢迎大家指出,
  • 1. 数组list=['jack','bob','harry','micle'],用中括号表示数组, 列表中的元素可以被添加和修改 2. 元组 touple =(10,34,56,22),元组使用括号()表示,元组中的元素不可变 上图的输出结果: 3. 字典 Dictionary={1:“Jack” Read More
    posted @ 2018-08-16 17:23 呵呵de大笑 Views(397) Comments(0) Diggs(0)
    1. 每个测试用例函数的名字需要以 test_ 开始,否则就出提示这个错误 例如: def test_hello(self): print("hello") Read More
    posted @ 2018-08-16 16:15 呵呵de大笑 Views(1544) Comments(0) Diggs(0)