是否有 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
Is there a Python language specification?
提问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 是由它的实现定义的。