摘要:
1、excel内容 时间、日期、字符串、数字 #行rows 列colsfor row in range(0, table.nrows): for col in range(0,table.ncols): if table.cell(row, col).ctype == 3: import datet 阅读全文
摘要:
一、建立shh 两台主机A和B,要在B上建立对A的信任,需要先在A主机上生成ssh-key1、生成ssh-key ssh-keygen -t rsa2、查看 cd /root/.ssh/ id_rsa为私钥 ,id_rsa.pub为公钥3、拷贝至B cd /root/.ssh/ vim author 阅读全文
摘要:
通过命令行执行报错:ModuleNotFoundError: No module named 'config' 命令行执行存在该问题 关于以上问题是因为:执行文件pytest_demo里面import的模块config在执行文件的目录的父级目录下,在执行时只能读取到执行文件同级目录及同级目录下,所以 阅读全文
摘要:
1、先分组后排序、考虑并列第一 #错误写法 SELECT b.depName AS departId, a.`name` AS employee, max(salary) AS salary FROM cs_employee a LEFT JOIN cs_depart b ON a.departId 阅读全文
摘要:
GET 在通过requests.get()进行GET请求时,key1=value1&key2=value2可以写成字典形式在parms中传参 from common.baseRquest import BaseRquest url ='http://10.162.16.5:8072/contents 阅读全文