文章目录
基础的4种数据结构
类型 | 标准用法 | 说明 |
---|---|---|
字符串 | a = 'playera’ b = ‘‘playerb’‘ c = ‘’‘playerabcdefg’’’ |
可以用单引号,双引号,和三引号 三引号一般是说明 |
c = ‘playera’ + b | 字符串可以直接连接 | |
words = ‘word’ * 3 | 多个重复字符串连接 | |
words[2:10] | 字符串切片索引,左闭右开 | |
列表 | album = [] | 创建一个新的列表list |
album.append(‘new song’) | 在列表list末尾追加 | |
‘new song’ in album | 成员运算符,测试是列表中的一员 | |
a_list = [1,2,3] sum(a_list) |
sum求和 |
1 列表List
列表的增删改查
2 字典Dictionary
字典的增删改查
3 元组Tuple和集合Set
元组Tuple
集合Set
4 数据结构的一些技巧
4.1 用sorted(list)函数排序技巧
# 使用sorted函数进行排序
num_list = [6,2,7,4,1,3,5]
print(sorted(num_list