摘要:
python代码报错maximum recursion depth exceeded 阅读全文
摘要:
问题: centos使用yum安装软件,失败报错 [linmo@VM_0_10_centos ~]$ sudo yum install yum install tmux -y 错误:rpmdb: BDB0113 Thread/process 8178/139732838348864 failed: 阅读全文
摘要:
现象: 如图所示,使用ls查看目录下文件,发现文件名有乱码和奇怪的符号,通过rm命令无法删除; 解决方案: 此时可通过文件的inode删除文件 操作过程: 使用ls -il查看文件inode 通过命令find . -inum xxxx -delete 删除文件 End 阅读全文
摘要:
求两个字符串的最长公共子串(python版) 阅读全文
postman发送请求失败,Error: Client network socket disconnected before secure TLS connection was established
摘要:
现象:postman发送请求失败,报: Error: Client network socket disconnected before secure TLS connection was established 解决: 关闭代理开关:去掉设置中 Use the system proxy 前面的勾选 阅读全文
摘要:
gevent程序使用Pycharm在debug时崩溃 阅读全文
摘要:
做自动化时需要从excel读取数据;
本文实现将excel文件数据读取为json格式,方便自动化调用 阅读全文
摘要:
CentOS使用yum安装python3 阅读全文
摘要:
requests发送https请求时默认验证ssl证书,此时如果访问的地址ssl证书过期失效或不信任,则请求失败,为了使请求成功,可以设置verify为False,暂时不验证 r = requests.get(url, headers=header, verify=False) 移除ssl验证后,可 阅读全文
摘要:
MySQL报错:1055 - Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'xxx' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 阅读全文