python:语法糖 - 是官方的吗?它在文档中的何处描述?
python: syntactic sugar - is it official? where is it described in documentation?
我经常看到注释,例如[]
是 _getitem_
的语法糖(), but neither by web search, not here on SO, not in glossary in docs.python.org 我可以找到 Python 的所有糖的列表。糖是官方的还是留给每个实现细节?
它记录在 Python data model documentation 中。
它不完全是合成糖,更多的是容器类型如何工作的实现细节。 Python 有很多所谓的 "magic methods"
我经常看到注释,例如[]
是 _getitem_
的语法糖(
它记录在 Python data model documentation 中。 它不完全是合成糖,更多的是容器类型如何工作的实现细节。 Python 有很多所谓的 "magic methods"