File tree Expand file tree Collapse file tree 2 files changed +38
-4
lines changed
notes/backend/python/tutorial Expand file tree Collapse file tree 2 files changed +38
-4
lines changed Original file line number Diff line number Diff line change 1010
1111本笔记以 [ Python 官方教程] ( https://docs.python.org/zh-cn/3/tutorial/index.html ) 为学习教程,记录一些学习笔记。
1212
13- 部分代码在 [ replit] ( https://replit.com/@zhaobin/python-tutorial ) 上,不过由于它不能在分享可编辑 ,可运行的示例,所以不再使用。
13+ 部分代码在 [ replit] ( https://replit.com/@zhaobin/python-tutorial ) 上,不过由于它已不能分享可编辑 ,可运行的示例,所以不再使用。
1414
1515<Catalog />
Original file line number Diff line number Diff line change @@ -20,16 +20,50 @@ head:
2020
2121# 在线 Python Playground
2222
23- ::: warning
23+ <!-- ::: warning
2424Python Playground 还处于开发阶段,功能尚未完善,将来陆续完善。
25- :::
25+ ::: -->
2626
2727简单记录一下近期抽空做的简单的 [ Python Playground] ( https://play-py.zhaobc.site ) 。
2828
2929Python Playground 主要是为了配合[ 笔记] ( ../../notes/backend/python/ ) 中的示例,基本保持跟 [ Vue Playground] ( https://play.vuejs.org ) 一样的逻辑。
3030
3131大概思想是将 markdown 中的示例代码直接转为 Playground 中的代码,并可预览执行结果。
3232
33+ ::: details 变更日志
34+
35+ 2025-08-03
36+
37+ - 增加查看和下载文件功能
38+ - 重命名环境变量文件名 ` env ` => ` .env `
39+
40+ 2025-08-02
41+
42+ - 修复 scrollToView 导致整个页面滚动的问题
43+
44+ 2025-08-01
45+
46+ - 增加关于对话框
47+ - 增加 scrollToView,保持输出内容始终可见
48+
49+ 2025-07-30
50+
51+ - 增加嵌入式模式时 __ 点击加载__ 功能
52+
53+ 2025-07-17
54+
55+ - 增加中断功能
56+
57+ 2025-07-14
58+
59+ - 增加输入功能
60+
61+ 2025-07-05
62+
63+ - 增加多文件 / 模块功能
64+
65+ :::
66+
3367## 示例
3468
3569以下是一些简单的示例。
@@ -50,7 +84,7 @@ print('Hello python playground!')
5084print (' env: ' , os.environ)
5185```
5286
53- @file env
87+ @file . env
5488
5589``` shell
5690a=b
You can’t perform that action at this time.
0 commit comments