摘要:
1、环境: 语言:python IDE:pycharn 测试工具:selenium+unittest+beautifulreport 测试页面:某网络设备 2、框架目录: 3、下载chrome浏览器对应版本驱动:driver\chromedriver.exe https://npm.taobao.o 阅读全文
摘要:
两种写法如下: 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], 阅读全文