|
|
|
|
|
by xapata
3687 days ago
|
|
It's the same language. This is not the break between Perl 5 and 6 which was different languages only keeping the brand. I find it very easy to write code which is simultaneously Python 2 and 3. A few ``from __future__ import`` statements and you'll be fine. The only reason some people are complaining is that they were ignoring bugs in their code regarding text data. It's not a Python problem, it's a problem with computers -- bytes are not text, but many systems ignore the difference. Many large enterprises are starting new projects in Python 3 exclusively. It's fine if you want to use some Python 3-only syntax. |
|
No it's not. The syntax is what defines the language:
It doesn't have the same syntax. It's not the same language, by definition.