上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 341 下一页
摘要: >>> import sys>>> print(sys.getdefaultencoding())utf-8>>> print(sys.getfilesystemencoding())utf-8>>> 阅读全文
posted @ 2022-06-19 15:32 emanlee 阅读(52) 评论(0) 推荐(0)
摘要: python判断word页码1、整体思路​ word的源码格式类似于xml,目前无法直接解析word页码​ 整体思路是 先将word转成pdf, 通过对PDF每一页进行文字提取,判断页码。2、使用到的python库​ 主要是 pdfminer库进行word转换成PDF,windows去下载pdfmi 阅读全文
posted @ 2022-06-15 21:34 emanlee 阅读(1367) 评论(0) 推荐(0)
摘要: 在本地生成的csv文件没有乱码。在服务器上生成的csv文件乱码。 在本地生成的csv文件,编码为ANSI编码,用Excel打开没有乱码。 在服务器上生成的csv文件,编码为UTF-8,用Excel打开显示乱码。 python open函数encoding encoding表示的是返回的数据采用何种编 阅读全文
posted @ 2022-06-11 11:52 emanlee 阅读(358) 评论(0) 推荐(0)
摘要: 和普通的表一样的方法,区别是 db_table 要和mysql新建的视图的名字相同 pymysql.err.OperationalError: (1054, "Unknown column id in 'field list'") pymysql.err.OperationalError: (105 阅读全文
posted @ 2022-06-11 10:49 emanlee 阅读(237) 评论(0) 推荐(0)
摘要: MySQL没有PIVOT功能 SELECT userid, MAX(CASE WHEN `type` = 1 THEN itemcount END) AS type_1, MAX(CASE WHEN `type` = 2 THEN itemcount END) AS type_2, MAX(CASE 阅读全文
posted @ 2022-06-11 08:30 emanlee 阅读(210) 评论(0) 推荐(0)
摘要: SELECT * FROM `mytable` WHERE CHARACTER_LENGTH(xingming)=2SELECT CONCAT(LEFT(xingming,1),' ',RIGHT(xingming,1)) FROM `mytable` WHERE CHARACTER_LENGTH( 阅读全文
posted @ 2022-06-11 07:39 emanlee 阅读(491) 评论(0) 推荐(0)
摘要: Error: [WinError 10013] An attempt was made to access a socket in a way forbidden by its access permissions 问题原因:期望使用的端口已经被占用解决方法:更换使用端口 阅读全文
posted @ 2022-06-10 20:53 emanlee 阅读(654) 评论(0) 推荐(0)
摘要: MySQL新版默认使用caching_sha2_password作为身份验证插件,而旧版是使用mysql_native_password当连接MySQL时报错“plugin caching_sha2_password could not be loaded”时,可换回旧版插件。 操作mysql数据库 阅读全文
posted @ 2022-06-10 14:12 emanlee 阅读(241) 评论(0) 推荐(0)
摘要: pycharm Cannot find declaration to goto 方法一: 指定解释器 查看项目文件结构是不是空的: 方法二: 关闭, 删除 .idea 文件夹 重新打开项目 阅读全文
posted @ 2022-06-09 18:59 emanlee 阅读(650) 评论(0) 推荐(0)
摘要: 同步远程仓库到本地 git pull=git fetch + merge $ git pull --rebase origin mastererror: cannot pull with rebase: You have unstaged changes.error: please commit o 阅读全文
posted @ 2022-06-07 19:44 emanlee 阅读(2214) 评论(0) 推荐(0)
上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 341 下一页