python总结(2)

这篇博客详细介绍了Python中的数据结构,包括字符串的基础操作,如定义、访问和各种操作函数;列表的定义、访问、增删改查和排序方法;元组的定义及不可变特性;字典的定义、访问和增删改查操作;以及集合的定义和交集、并集操作。内容深入浅出,适合Python初学者学习。
摘要由CSDN通过智能技术生成

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.交集 并集

&

|

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小徐的记事本

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值