输出结果:
zhangsan
age
30
tel
13523464219
集合
基本概念、特性
无序存储不同数据类型不重复元素的序列
定义:{“element1”,“element2”,element3“...交集:intersection
并集:union
差集:difference
对称差集:symmetric_difference
集合对列表去重
id_list = ["id1", "id2", "id3"..., "id1", "id2"]
distinct_set = set(id_list) #去重
print(distinct_set)
输出结果:
{'id1', 'id2', 'id3'}
集合对字符去重...hi world hello python
split(sep[, maxsplit])
line.split(" ") #以空格作为分隔符,以列表方式返回
输出结果:
['hello', 'world...', 'hello', 'python']
#指定分隔的个数
line.split(" ", 1)
输出结果:
['hello', 'world hello python']
startswith(prefix