05 2019 档案

摘要:进入不同语言版本的Python交互环境 py -2 py -3 pip 命令的执行 : py -2 -m pip install xxxx py -3 -m pip install nose 执行python文件 py -2 a.py py -3 a.py py2: print "hello" py 阅读全文
posted @ 2019-05-24 00:03 我是一言 阅读(299) 评论(0) 推荐(0) 编辑
摘要:pytest框架 安装pytest pip install -U pytest 查看安装版本 pip show pytest pytest --version 先看官网的一个例子,这个例子告诉你pytest的执行规则: 新建一个test_sample.py文件,代码如下: def func(x): 阅读全文
posted @ 2019-05-12 16:05 我是一言 阅读(346) 评论(0) 推荐(0) 编辑