是否有 Python 语言规范?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/1094961/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-11-03 21:28:19  来源:igfitidea点击:

Is there a Python language specification?

pythonspecifications

提问by kgrad

Is there anything in Python akin to Java's JLS or C#'s spec?

Python 中是否有类似于 Java 的 JLS 或 C# 规范的内容?

采纳答案by Noldorin

There's no specification per se. The closest thing is the Python Language Reference, which details the syntax and semantics of the language.

本身没有规范。最接近的是Python Language Reference,它详细介绍了该语言的语法和语义。

回答by nojevive

You can check out the Python Reference

您可以查看Python 参考

回答by Marko

No, python is defined by its implementation.

不,python 是由它的实现定义的。