Skip to content

Commit

Permalink
Update Part.1.E.6.containers.md
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaolai committed Apr 18, 2019
1 parent 3572a21 commit da79619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown/Part.1.E.6.containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ print(a_list)
# 内建函数操作 len()、max()、min()
print(len(c_list))
print(max(b_list)) # 内建函数内部做了异常处理,可以比较字符和数字 —— 初学者最讨厌这种事情了……
print(min(b_list)) # 读者注意,max() 和 min() 应用的是 b_list, len() 应用的是 c_list ……请自行找到对应的 list 进行分析。
print(min(b_list)) # 注意,max() 和 min() 应用的是 b_list, len() 应用的是 c_list —— 请自行找到对应的 list 进行分析。

print('X' not in b_list)
```
Expand Down

0 comments on commit da79619

Please sign in to comment.