1.python安装
2.pip使用
3.anaconda
4.google colab
5.pycharm
6.vscode
7.注释
8.tab缩进
9.多行语句
10.基础数据
int
bool
float
complex
string
11.导入模块
import
12.类数组类型
list列表(类似数组)
tuple元组(不可修改)
set集合(无序、可变、唯一)
dict字典(无序、键值对)
12.类型转换
13.运算符
+加
-减
*乘
/除
%取模(返回除法的余数)
**幂(指数)
//向下取整
14.字符串
+字符串连接
*重复字符串
[]取字符串中索引
[:]截取字符串
in包含
not in不包含
15.条件控制
if...elif...else
match...case
16.循环语句
while
for
range