摘要: 参考文档: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)
摘要: 查看系统版本:cat /etc/issue 使用echo: echo "" > 覆盖文件 echo "" >> 给文件追加内容 使用cat:查看文件内容 使用mv:重命名文件 使用 阅读全文
posted @ 2022-04-28 22:37 llxxssll 阅读(12) 评论(0) 推荐(0)
摘要: 官方参考文档: 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)
摘要: 参考: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)
摘要: 参考官网教程: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)
摘要: 参考:https://zhuanlan.zhihu.com/p/341378844 阅读全文
posted @ 2022-02-28 09:22 llxxssll 阅读(23) 评论(0) 推荐(0)
摘要: 取消标题下的默认下划线 参考:https://blog.csdn.net/qq_43340547/article/details/120761268 阅读全文
posted @ 2021-12-01 09:39 llxxssll 阅读(27) 评论(0) 推荐(0)
摘要: 分页: <div STYLE="page-break-after: always;"></div> 阅读全文
posted @ 2021-11-27 19:11 llxxssll 阅读(20) 评论(0) 推荐(0)
摘要: *与**用法详解 在函数的传参中使用,意为将传入的所有值打包为一个元组* 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)
摘要: 参考:https://github.com/jupyterlab/debugger 根据自己的jupyter lab版本安装对应库 经测试,jupyter lab最新版本3.2.4无需任何操作,可直接调试 阅读全文
posted @ 2021-11-21 16:31 llxxssll 阅读(549) 评论(0) 推荐(0)