Please enable JavaScript.
Coggle requires JavaScript to display documents.
Python (django (model, urls, :star:views, forms), python基础 (数据序列 (字典…
Python
django
urls
model
:star:
views
forms
python基础
数据序列
字典
改:直接对应值修改
查:直接获取、get
删:del、clear
增:直接增加,update
items,keys,values
集合
删:remove、discard、pop
查:len、in 、 not in
增:add、update
元组
查:index、count
公共方法
len、del、max、min、range、enumerate
数据类型转换:tuple、list、set
+、*、in、not in
列表
删:remove、clear、pop、del
改:
增加:append、extend、inser
查询:index 、in 、not in
推导式
列表推导式:[表达式 for i in range(10)]
字典推导式:{k:v for k in range() for v in range()}
字符串
切片
查询方法:find、index、count、len
修改:replace、strip、split、upper、lower、title、join、captizale、ljoin、rjion、center
判断:isdigit、isalpha、isalnum、isspace、isstartswith、isendswith、
flask
爬虫