I\'m trying learn Python (3 to be more specific) and I\'m getting this error:
ValueError: zero length field name in format
I googled it and
If you're using Eclipse you should look into Window -> Preferences -> PyDev -> Interpreter - Python. There you have a list of interpreters (with name and location). If for your current project you're using interpreter which is located for example in /usr/bin/python then probably executing /usr/bin/python -V whill give you something like "Python 2.6.6". And there is your answer like Winston Ewert wrote.
(you can add new interperter by simply clicking "New..." button and giving /usr/bin/python3 as "location". Then you have probably to change your project settings (Preferences -> PyDev - Interpreter/Grammar).