diff --git a/Python/Data_type.md b/Python/Data_type.md new file mode 100644 index 0000000..e122841 --- /dev/null +++ b/Python/Data_type.md @@ -0,0 +1,11 @@ + +- 数字 + - 整数 `int` + - 浮点数 `float` + - 复数 `complex` + - 布尔型 `bool` +- 字符串 `str` +- 列表 `list` +- 元组 `tuple` +- 集合 `set` +- 字典 `dict` \ No newline at end of file diff --git a/Python/README.md b/Python/README.md new file mode 100644 index 0000000..1cb0a4c --- /dev/null +++ b/Python/README.md @@ -0,0 +1,2 @@ +# 目录 +- [基本数据类型](Data_type.md) \ No newline at end of file