Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
andytyc committed Mar 13, 2023
1 parent 6b61fc0 commit 26cf42c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions seed/02-base-基础语法/02_term_概念术语_数据类型.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,38 @@ Python **没有单独的字符类型**,一个字符就是长度为 1 的字符

[code](https://github.com/andytyc/pythoncode/blob/main/seed/base/term/02-5-list.py)

[参考](https://github.com/walter201230/Python/blob/master/Article/PythonBasis/python3/List.md)

#### 3.1 List(列表)运算符

列表对 `+``*` 的操作符与字符串相似。`+` 号用于组合列表,`*` 号用于重复列表。

| Python 表达式 | 结果 | 描述 |
| ---------------------------- | ---------------------------- | -------------------- |
| len([1, 2, 3]) | 3 | 计算元素个数 |
| [1, 2, 3] + [4, 5, 6] | [1, 2, 3, 4, 5, 6] | 组合 |
| ['Hi!'] \* 4 | ['Hi!', 'Hi!', 'Hi!', 'Hi!'] | 复制 |
| if 3 in [1, 2, 3] | True | 元素是否存在于列表中 |
| for x in [1, 2, 3]: print x, | 1 2 3 | 迭代 |

#### 3.2 List (列表)函数&方法

| 函数&方法 | 描述 |
| ----------------------- | ------------------------------------------------------------------ |
| len(list) | 列表元素个数 |
| max(list) | 返回列表元素最大值 |
| min(list) | 返回列表元素最小值 |
| list(seq) | 将元组转换为列表 |
| list.append(obj) | 在列表末尾添加新的对象 |
| list.count(obj) | 统计某个元素在列表中出现的次数 |
| list.extend(seq) | 在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的列表) |
| list.index(obj) | 从列表中找出某个值第一个匹配项的索引位置 |
| list.insert(index, obj) | 将对象插入列表 |
| list.pop(obj=list[-1]) | 移除列表中的一个元素(默认最后一个元素),并且返回该元素的值 |
| list.remove(obj) | 移除列表中的一个元素(参数是列表中元素),并且不返回任何值 |
| list.reverse() | 反向列表中元素 |
| list.sort([func]) | 对原列表进行排序 |

### 4. 元组

1. 元组(tuple)与列表类似,元素类型也可以不相同
Expand Down

0 comments on commit 26cf42c

Please sign in to comment.