1. 字符串的基础操作
a. 定义:
引号之间的内容就是字符串
b. 访问:
i.通过下标进行访问
ii.while for 循环遍历
iii. 切片 src[start:end:step]: 1.前闭后开 2.start: 0 end:len(): step: 1
c. 字符串操作函数
i.find rfind index rindex count
ii.split splitlines partition
iii.startswith endswith isalpha isspace isdigit isalnum
iv.upper lower title
v.center ljust rjust strip lstrip rstrip
vi. join
2.列表的相关操作
a. 定义:
[int, bool, str, list, tuple, dict]
b. 访问:
i. dict[index]
ii. while for
iii. dict[start:end:step]
c. 增删改查
增加: append insert extend
删除: del dict[index] pop remove
modify: dict[下标] = new_value
查找: in not in index count
d. 排序:
sort (reverse=True)
// 排序: 快排
3. 元组的基本操作:
a.定义:
(int, bool, list, tuple, dict)
b. 元组不可以修改
i.访问
下标
while for
tuple[]
ii.查找
in not in index count
4. 字典的基本操作
a. 定义:
{key:value, key2: value2}
b. 访问:
dic[key]:
dic.get()
c.字典的增删改查
i. 增加 dic[new_key] = value
ii.删除 del dic[key] clear()
iii.修改 dic[key] = new_value
iv. 查找 in not in
len
keys
values
items
5. 集合
a.定义:
无序 唯一
{int, int , int }
b.交集 并集
&
|