Is there a Python language specification?

Viewed 15622

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

3 Answers

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

No, python is defined by its implementation.

Related