上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 45 下一页
摘要: 使用如下函数: drop_duplicates 具体示例如下: import pandas as pd # 建立一个dataframe数据 df = pd.DataFrame({'k1':['one']*3+['two']*4,'k2':[1,1,2,3,3,4,4]}) df['v1']=rang 阅读全文
posted @ 2021-01-16 17:16 胸怀丶若谷 阅读(777) 评论(0) 推荐(0)
摘要: addLayout():用于在布局中插入子布局 addWidget():用于在布局中插入控件 阅读全文
posted @ 2021-01-15 09:13 胸怀丶若谷 阅读(128) 评论(0) 推荐(0)
摘要: 运行命令 sudo apt install python3-pip 报错: 有几个软件包无法下载,要不运行apt-get update 或加上--fix-missing试试 输入命令: sudo apt install python3-pip --fix-missing 即可 阅读全文
posted @ 2021-01-05 17:20 胸怀丶若谷 阅读(330) 评论(0) 推荐(0)
摘要: 1.win+r,在运行中输入“gpedit.msc”来启动本地组策略编辑器。 2.寻找文件夹:计算机配置→管理模板→网络→Lanman工作站 3.双击启用不安全的来宾登录,弹出窗口如下: 参考链接:https://blog.csdn.net/u012308586/article/details/10 阅读全文
posted @ 2021-01-05 16:17 胸怀丶若谷 阅读(2619) 评论(0) 推荐(0)
摘要: 打开查找,然后点更多,最下面点不限定格式 阅读全文
posted @ 2020-12-25 09:24 胸怀丶若谷 阅读(1926) 评论(0) 推荐(0)
摘要: Eclipse国际语言包下载地址:https://www.eclipse.org/babel/ Eclipse汉化 step1:官网下载对应的语言包,如下图所示 step2:下载对应的版本 step3:解压并覆盖路径 - 解压下载的zip包,在得到的eclipse文件夹中,将其中feature和pl 阅读全文
posted @ 2020-12-18 15:05 胸怀丶若谷 阅读(190) 评论(1) 推荐(0)
摘要: 目录结构如图所示: 错误的原因是因为代码中没有指定​package,加上“package j2se;”后再编译即OK。 报错之前的代码: public class HelloWorld{ public static void main(String[] args){ System.out.print 阅读全文
posted @ 2020-12-17 14:27 胸怀丶若谷 阅读(11028) 评论(0) 推荐(0)
摘要: module 本模块的名称{ exports 对外暴露的包路径; requires 需要依赖的其他模块名称; } module-info.java不是类,不是接口,是一些模块描述信息。module也不是关键字。 exports 对外暴露的包路径;有些包你想要其他模块访问,有些包你不想要其他模块访问。 阅读全文
posted @ 2020-12-17 13:53 胸怀丶若谷 阅读(4896) 评论(0) 推荐(1)
摘要: 链接推荐: https://how2j.cn/ 阅读全文
posted @ 2020-12-17 09:23 胸怀丶若谷 阅读(1036) 评论(0) 推荐(0)
摘要: 错误: path("uploads/(?P<path>.*)$", 'django.views.static.serve', {"document_root": settings.MEDIA_ROOT}), 修改为: from django.views.static import serve pat 阅读全文
posted @ 2020-12-16 19:44 胸怀丶若谷 阅读(260) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 45 下一页