Obsidian manual commit: 2025-06-28 23:18:14

This commit is contained in:
lkhsss
2025-06-28 23:18:14 +08:00
parent 47fd454920
commit 2f10f50af3
2 changed files with 13 additions and 0 deletions

11
Python/Data_type.md Normal file
View File

@ -0,0 +1,11 @@
- 数字
- 整数 `int`
- 浮点数 `float`
- 复数 `complex`
- 布尔型 `bool`
- 字符串 `str`
- 列表 `list`
- 元组 `tuple`
- 集合 `set`
- 字典 `dict`

2
Python/README.md Normal file
View File

@ -0,0 +1,2 @@
# 目录
- [基本数据类型](Data_type.md)