摘要: 1、环境: 语言:python IDE:pycharn 测试工具:selenium+unittest+beautifulreport 测试页面:某网络设备 2、框架目录: 3、下载chrome浏览器对应版本驱动:driver\chromedriver.exe https://npm.taobao.o 阅读全文
posted @ 2021-08-04 16:00 氦呀 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 两种写法如下: a = [] for i in range(3): a.append([]) print(a) for j in range(4, 9): a[i].append(j) print(a) 输出: [[]] [[4, 5, 6, 7, 8], []] [[4, 5, 6, 7, 8], 阅读全文
posted @ 2021-08-04 15:40 氦呀 阅读(271) 评论(0) 推荐(0) 编辑