11 lines
774 B
Markdown
11 lines
774 B
Markdown
|
|
# 语言深度潜水
|
||
|
|
|
||
|
|
> 原文:[https://python.land/deep-dives](https://python.land/deep-dives)
|
||
|
|
|
||
|
|
在这一章中,我们将深入一些具体的 Python 语言主题。这些主题可能已经被触及。例如,我们在 Python 函数的[介绍中介绍了函数。但是你将从这一章学到的](https://python.land/introduction-to-python/functions)[高级 Python 函数概念](https://python.land/deep-dives/functions)扩展了这些知识。
|
||
|
|
|
||
|
|
此处涉及的其他主题:
|
||
|
|
|
||
|
|
* 列表压缩:一种减少代码中 for 循环数量的优雅方式
|
||
|
|
* [Python docstring](https://python.land/deep-dives/python-docstring) :用于正式记录您的 Python 代码
|
||
|
|
* [例外与尝试..Python 中处理错误的语句](https://python.land/deep-dives/python-try-except)除外
|