Reputation: 408
When I open someone's Django project, I need a time for understanding which Python version is used here. I try to find print or print() methods, but some Django projects contain both print methods. How I can at once know, which version of Python is used in the Django project?
Upvotes: 0
Views: 1922
Reputation: 46
This is a list of the syntax that isn't backwards compatible with python 2. Use it to determine their version.
Upvotes: 1