5 ms·
So, is this just a syntax change or is this adding a new statement? If it's the latter, does that mean that the execution environment is part of the language i
by dasb 6y ago
So, is this just a syntax change or is this adding a new statement?
If it's the latter, does that mean that the execution environment is part of the language itself, instead of, for example, C where environmental stuff is only accesible through the standard library and the language per se is little more than a context-free grammar?
- coldtea 6y ago>does that mean that the execution environment is part of the language itself Yes, that has always be the case with Python in my understanding - there are lots of built-ins...
- pdonis 6y ago> is this just a syntax change or is this adding a new statement? It's just a syntax change; "print 1 2 3" is still an expression just like "print(1, 2, 3)".