a2sv
a2sv copied to clipboard
This script works only with Python 2
Is it possible to make the code in a2sv.py
compatible with Python 3? E.g. moving from print 'abc'
to print('abc')
.
As an alternative the script could check at runtime the Python version with sys.version
or sys.version_info[0]
and stop the execution if not Python 2.
2to3