You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python 2 is end of life and will be phased out on new systems over the upcoming while. It would be good to ensure this is safe with Python3.
I would recommend prefixing the modules with: from __future__ import print_function
And then ensuring that calls to print use the Python3 syntax. This would then allow the code to run on 3 and 2 at the same time. My quick reading did not see any other concerning areas regarding division or unicode literals.
The text was updated successfully, but these errors were encountered:
Python 2 is end of life and will be phased out on new systems over the upcoming while. It would be good to ensure this is safe with Python3.
I would recommend prefixing the modules with:
from __future__ import print_function
And then ensuring that calls to print use the Python3 syntax. This would then allow the code to run on 3 and 2 at the same time. My quick reading did not see any other concerning areas regarding division or unicode literals.
The text was updated successfully, but these errors were encountered: