天宫鹤

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页

2024年4月1日

Python按照汉字拼音排序

摘要: # 按照汉字拼音排序 prov_list = ['河北省', '山东省', '广东省', '山西省', '河南省'] prov_list.sort(key=lambda x: x.encode('gbk')) print(prov_list)运行代码输出结果如下。['广东省','河北省','河南省' 阅读全文

posted @ 2024-04-01 13:59 GoGrid 阅读(243) 评论(0) 推荐(0) 编辑

2024年3月31日

Python获取指定目录(dest_dir)中的指定后缀(dest_suffix)的文件列表

摘要: # 获取指定目录(dest_dir)中的指定后缀(dest_suffix)的文件列表def get_files(dest_dir, dest_suffix='.xlsx'): list_files = [] for root, dirs, files in os.walk(dest_dir): fo 阅读全文

posted @ 2024-03-31 15:50 GoGrid 阅读(26) 评论(0) 推荐(0) 编辑

WPS Office这样查看更改文档信息

摘要: 文件->文档加密->属性。 阅读全文

posted @ 2024-03-31 15:21 GoGrid 阅读(17) 评论(0) 推荐(0) 编辑

2024年3月28日

PyCharm 2023.3.5 (Professional Edition)这样永久激活!!!简单!!!有效!!!

摘要: 请转到以下网址: https://blog.csdn.net/g89898guo/article/details/136834460 阅读全文

posted @ 2024-03-28 21:21 GoGrid 阅读(472) 评论(0) 推荐(0) 编辑

2024年3月24日

pandas之DataFrame的date数据类型正确的转换方法!!!

摘要: 错误:df['date'] = df['date'].astype('datetime64')正确: (1)df['date'] = df['date'].astype('datetime64[ns]') ns纳秒 (2)df['date'] = df['date'].astype('datetim 阅读全文

posted @ 2024-03-24 18:43 GoGrid 阅读(109) 评论(0) 推荐(0) 编辑

2024年3月23日

Python中pandas.read_excel()使用usecols参数会报错!!!!!!!!!

摘要: pandas.read_excel()使用usecols参数会报错!!!!!!!!! 解决方法:弃之不用。 阅读全文

posted @ 2024-03-23 22:19 GoGrid 阅读(74) 评论(0) 推荐(0) 编辑

2023年5月13日

解决Qt6.5 for Android应用程序(地图应用程序)不支持OpenSSL问题

摘要: 1.问题原因:版本问题 ssl_3: used for Qt 6.5.0+. ssl_1_1: for Qt Qt 5.12.5+, 5.13.1+, 5.14.0+, 5.15.0+, Qt 6.x.x up to 6.4.x 2.解决方法 (1)方法一:删除android_openssl目录,点 阅读全文

posted @ 2023-05-13 21:22 GoGrid 阅读(154) 评论(0) 推荐(0) 编辑

2023年4月10日

Qt for Android QtQuick应用程序 USB连接手机调试运行错误:adb: failed to *.apk: No such file or directory(重要启示:路径中不能包含空格、中文!!!)

摘要: 1.场景 Windows11、Qt6.5.0QtQuick应用程序USB连接手机调试运行。 2.错误信息 adb: failed to *.apk: No such file or directoryInstalling to device failed!进程"C:\Users\Administra 阅读全文

posted @ 2023-04-10 19:18 GoGrid 阅读(186) 评论(2) 推荐(0) 编辑

2023年4月9日

Qt6.5.0 for Android开发环境这样设置最简单正确高效

摘要: 0.版本设置: (1)Windows:11 (2)Qt:Qt6.5.0 (3)Android Gradle Plugin(AGP):7.4.2 (4)Gradle:7.5 (5)JDK:JDK 11.0.18 (6)Android SDK:API33 (7)Android NDK:NDK23.1.7 阅读全文

posted @ 2023-04-09 18:05 GoGrid 阅读(544) 评论(0) 推荐(0) 编辑

2023年4月6日

Windows11 Qt6.5.0+OpenCV4.7.0+android-ndk-r25.2编译arm64-v8a动态库(.so)、静态库(.a)

摘要: 1.在cmake-gui中,点击Add Entry,增加ANDROID_ABI,值为arm64-v8a,增加ANDROID_PLATFORM,值为24,版本配置如下: 注:一定要在configure前添加,否则修改也不再使用,会使用默认的armeabi-v7a编译器。 2.点击configure: 阅读全文

posted @ 2023-04-06 17:47 GoGrid 阅读(318) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页

导航