一:
1。常用数据类型
int
str
bool
folat
list
dict
set
tuple
type
2.常用字符串操作
strip()
split()
join()
replace()
isinstance()
3.常用for循环:多层嵌套取多层数据
enumerate()
双层数据一般使用双for嵌套循环
4.函数的封装
函数:可变长参数(*agrs,**kwagrs)
建议:如果有代码需要复制,就需要把这段代码封装函数。
5.类与继承
超继承初始化后,self就代表父类
super().__init__("父类的初始化参数")
6.未完待续