会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
llxxssll
博客园
首页
新随笔
联系
订阅
管理
2022年5月5日
python装饰器学习
摘要: 参考文档:https://www.runoob.com/w3cnote/python-func-decorators.html https://zhuanlan.zhihu.com/p/87353829
阅读全文
posted @ 2022-05-05 18:24 llxxssll
阅读(23)
评论(0)
推荐(0)
2022年4月28日
linux常用命令
摘要: 查看系统版本:cat /etc/issue 使用echo: echo "" > 覆盖文件 echo "" >> 给文件追加内容 使用cat:查看文件内容 使用mv:重命名文件 使用
阅读全文
posted @ 2022-04-28 22:37 llxxssll
阅读(12)
评论(0)
推荐(0)
Dockerfile相关知识
摘要: 官方参考文档: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/ python的教程:https://docs.docker.com/language/python/build-images/ 命令行引
阅读全文
posted @ 2022-04-28 22:27 llxxssll
阅读(17)
评论(0)
推荐(0)
git基本操作
摘要: 参考:https://zhuanlan.zhihu.com/p/193140870 git邮箱设置:https://xiumu.org/technology/making-an-error-error-gh007-your-push-order-to-publish-a-private-email-
阅读全文
posted @ 2022-04-28 18:21 llxxssll
阅读(19)
评论(0)
推荐(0)
2022年4月18日
WSL2的使用
摘要: 参考官网教程:https://docs.microsoft.com/zh-cn/windows/wsl/install 旧版的安装步骤:https://docs.microsoft.com/zh-cn/windows/wsl/install-manual#step-4 download-the-li
阅读全文
posted @ 2022-04-18 19:24 llxxssll
阅读(96)
评论(0)
推荐(0)
2022年2月28日
python的nonlocal和global的区别
摘要: 参考:https://zhuanlan.zhihu.com/p/341378844
阅读全文
posted @ 2022-02-28 09:22 llxxssll
阅读(23)
评论(0)
推荐(0)
2021年12月1日
Typora使用笔记
摘要: 取消标题下的默认下划线 参考:https://blog.csdn.net/qq_43340547/article/details/120761268
阅读全文
posted @ 2021-12-01 09:39 llxxssll
阅读(27)
评论(0)
推荐(0)
2021年11月27日
Typora使用笔记
摘要: 分页: <div STYLE="page-break-after: always;"></div>
阅读全文
posted @ 2021-11-27 19:11 llxxssll
阅读(20)
评论(0)
推荐(0)
2021年11月22日
python里的*与**
摘要: *与**用法详解 在函数的传参中使用,意为将传入的所有值打包为一个元组* def add(*args): res = 0 print(args) for i in args: res += i return res 结果为 add(1,2,3,4) (1, 2, 3, 4) 10 在函数的传参中使用
阅读全文
posted @ 2021-11-22 21:18 llxxssll
阅读(150)
评论(0)
推荐(0)
2021年11月21日
使用Jupyter lab对ipynb文件进行调试
摘要: 参考:https://github.com/jupyterlab/debugger 根据自己的jupyter lab版本安装对应库 经测试,jupyter lab最新版本3.2.4无需任何操作,可直接调试
阅读全文
posted @ 2021-11-21 16:31 llxxssll
阅读(549)
评论(0)
推荐(0)
下一页
公告