-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,81 @@ | ||
# PythonLearn | ||
python基础教程的代码实现 | ||
# Python 基础知识点 | ||
## 环境 | ||
- 怎么运行? | ||
1. 下载 | ||
2. 官网 | ||
3. 配置环境 | ||
4. hello world | ||
5. 编辑工具 | ||
6. 有什么用 | ||
7. 命令行 | ||
- 目录结构? | ||
1. 解释下载包的结构 | ||
2. 其他 | ||
- 其他大家想想 | ||
## 基础语法 | ||
- 标识符 | ||
区分大小写 | ||
|
||
- 保留字 | ||
- 凹凸锯齿特点 | ||
- 注释 | ||
- 无分号 | ||
## 变量 | ||
- 怎么定义变量? | ||
- 怎么使用变量 | ||
- 和其他主流程序变量做对比 如java ,c++ | ||
## 基础数据类型 | ||
- 数字 | ||
int long byte float | ||
|
||
- String 字符串 | ||
- List 列表 | ||
- tuple 元组 | ||
- dictionary 字典 | ||
## 运算操作 | ||
- 5大基本运算 | ||
1. 算术 | ||
2. 逻辑 | ||
3. 比较 | ||
4. 位运算 | ||
5. 赋值运算 | ||
- 特殊运算 | ||
1. in | ||
2. is | ||
## 选择语句 | ||
- if | ||
- switch | ||
## 循环 | ||
- for | ||
- while | ||
## 方法function | ||
- 怎么定义方法? | ||
- 怎么使用方法? | ||
- 参数 | ||
- 返回值 | ||
- 特殊的方法 | ||
1. 匿名 | ||
2. lambda表达式 | ||
3. 变长参数 | ||
4. 其他 | ||
## 类Class | ||
- 如何定义 | ||
- 如何使用类? | ||
- 注意事项 | ||
- 和其他语言做比较 | ||
## 模块 module | ||
- 什么是module ? | ||
- 怎么创建? | ||
- 怎么使用自己的module | ||
- 怎么使用第三方的module | ||
## 多线程 | ||
- UI的使用 | ||
- 多线程 | ||
- 其他 | ||
# 数据相关 | ||
- 数据库的读写 | ||
- 网络读写 | ||
- 文件读写 | ||
|
||
|
||
|