Skip to content

Commit

Permalink
Merge pull request iamseancheney#2 from leeoo/leeoo-fix-typo
Browse files Browse the repository at this point in the history
Update 第03章 Python的数据结构、函数和文件.md
  • Loading branch information
leeoo authored Sep 16, 2018
2 parents 62ca2ea + c63a36e commit c134ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 第03章 Python的数据结构、函数和文件.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ In [33]: a, b, *_ = values
```

## tuple方法
因为元组的大小和内容不能修改,它的实例方法都很轻量。其中一个很有用的就是``count``(也适用于列表),它可以统计某个值得出现频率
因为元组的大小和内容不能修改,它的实例方法都很轻量。其中一个很有用的就是``count``(也适用于列表),它可以统计某个值的出现频率

```python
In [34]: a = (1, 2, 2, 2, 3, 4, 2)
Expand Down

0 comments on commit c134ee9

Please # to comment.