11 2021 档案

摘要:分页: <div STYLE="page-break-after: always;"></div> 阅读全文
posted @ 2021-11-27 19:11 llxxssll 阅读(21) 评论(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 阅读(155) 评论(0) 推荐(0)
摘要:参考:https://github.com/jupyterlab/debugger 根据自己的jupyter lab版本安装对应库 经测试,jupyter lab最新版本3.2.4无需任何操作,可直接调试 阅读全文
posted @ 2021-11-21 16:31 llxxssll 阅读(563) 评论(0) 推荐(0)
摘要:流程: 1、下载vmwave16 2、加入QQ群——虚拟机总群:917945140 3、下载群文件中的“QQ堂xp专用虚拟机.7z” 4、按照群文件的教程,打开vmwave,打开下载好的虚拟机 阅读全文
posted @ 2021-11-19 23:10 llxxssll 阅读(299) 评论(0) 推荐(0)
摘要:Jupyter Notebook代码自动补全 内容参考帖子链接: https://blog.csdn.net/weixin_37595559/article/details/81540482 1.安装nbextensions 1 pip install jupyter_contrib_nbexten 阅读全文
posted @ 2021-11-16 19:17 llxxssll 阅读(126) 评论(0) 推荐(0)