Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to make it as general as possible - e.g. handle as many versions as possible.

Since version 3 is not backwards compatible with version 2, I want to make sure that I use the right print statement.

Please let me know if you have questions and feel free to share related knowledge having to do with dynamic logic based on what (e.g. libraries) is available.

Suppose I have a script that will run under version 1.x, or 2.x, or 3.x only.

Or a script which requires a library A or a library B.

Thanks!

EDIT:

Now ... when it comes to Python (unlike .Net) some libraries like SciPy, Google App Engine keep you glued to particular version. On Linux, Mac Os you can switch between different Python installs on command line. This is why I want to avoid confusion - I want to remember which script is for which version of Python and what libraries it needs. I would rather have it fail in a human-readable way.

share|improve this question
2  
Please do not mix syntax between Python 2 and Python 3. Please do not. There's a 2to3 tool that will rewrite your proper Python 2 into Python 3. You maintain the Python 2 version, and you use the tool to create the Python 3 version. This tool guarantees that you don't have any confusion. You maintain Python 2 and convert cleanly to Python 3 with no confusion. – S.Lott Mar 3 '10 at 11:30
@S.Lott although "proper" Python 2 seems to mean writing some things for Python 2.6-only syntax, meaning you have to give up support for 2.5 and below. In particular, using bytes() and b'' to indicate byte strings. – Craig McQueen Mar 9 '10 at 7:43

6 Answers

up vote 3 down vote accepted
  • If you want to maintain a codebase that works with Python 2 and 3, you wouldn't try to make code that will run in both, which will be awkward and ugly and bugprone, you would write in Python 2 and use 2to3 to convert. (You can also write in Python 3 and use 3to2 to convert, but I believe that tool is less mature.) 2to3 is not perfect, but making Python 2 code that can be converted by it makes tons more sense than making Python 2 code that will run in a Python 3 interpretter.
  • Another option is Cython, a Python-like language that can be used to create C extension modules. Cython modules can be used with Python 2 and 3.
  • When you support multiple versions of Python, it is generally better to directly check for the capability you want rather than to check a version number. Checking version numbers directly is fragile and indirect.

    For example, if I wanted code that would work with Python pre-2.5, I would say:

    try: 
        any
    except NameError:
        def any(iterable):
            for item in iterable:
                if item:
                    return True
            return False
    

    (note that this is prettymuch the only reason to catch NameError). Similarly, library availability would be checked by catching ImportError.

  • If you want a script to remember what version it is from, like you say, don't bother trying to support multiple versions at all. Put the proper version number binary in the shebang line and run the script based on that.

share|improve this answer
2  
+1: Use 2to3, that's what it's for. Write Python 2 that converts properly and don't try to mix syntax. – S.Lott Mar 3 '10 at 11:32

In order to get around syntax errors you would have to use conditional imports, if you want to mix syntax between versions 2 and 3.

# just psuedocode
if version is x:
   import lib_x # contains version x implementation
else:
   import lib_y # contains version y compatible implementation

It is not advisable to try to maintain compatibility between python3 and older versions. That said, here are several ways of detecting the version of python being used:

While not particularly human friendly, sys.hexversion will work across the widest variety of python versions, since it was added back in version 1.5.2:

import sys
if sys.hexversion == 0x20505f0:
    print "It's version 2.5.5!"

You should be able to get version information from sys.version_info (added in python 2.0):

import sys
if sys.version_info[0] == 2:
    print "You are using version 2!"
else:
    print "You are using version 1, because you would get SyntaxErrors if you were using 3!"

Alternatively you could use the platform module, though that was introduced in python 2.3, and would not be available in older versions (assuming you even care about them):

try:
    import platform
    if platform.python_version().startswith('2'):
        print "You're using python 2.x!"
except ImportError, e:
    print "You're using something older than 2.3. Yuck."
share|improve this answer
I suppose it is as simple as this. Of course it must be either print or print(). Thanks! – Hamish Grubijan Mar 3 '10 at 3:42
2  
sys.version_info is a tuple containing the version X.Y.Z not a function. – cschol Mar 3 '10 at 3:53
Just in case, I do care about older versions. By the way, your second edit will not work on Python 3.x :( – Hamish Grubijan Mar 3 '10 at 3:53
The second edit will not work in any Python version. sys.version_info has always been a tuple and not a function. His code is just wrong. – cschol Mar 3 '10 at 3:55
1  
First available in version 2.0. – cschol Mar 3 '10 at 4:14
show 2 more comments

The sys module also contains the version info (first available in version 2.0):

import sys

if sys.version_info[0] == 2:
    print "You are using Python 2.x"
share|improve this answer

FYI, if you ever want to port 2.x scripts to 3.x, you can use 2to3 source conversion tool.

share|improve this answer
Is it spotless? – Hamish Grubijan Mar 3 '10 at 3:43
@hamish : not exactly... but it automates most of the process... see: diveintopython3.org/porting-code-to-python-3-with-2to3.html – aviraldg Mar 3 '10 at 3:45
Please see a first edit when it appears. – Hamish Grubijan Mar 3 '10 at 3:49
@Hamish Grubijan: Yes. It's "spotless". If you write your Python 2 correctly (which is very easy to do) The 2to3 tool will convert to Python 3 and you do not have any confusion or any thinking or any maintenance. It is the best way to have code that runs in both environments. You write (and maintain) Python 2 and use the 2to3 tool to create your Python 3. – S.Lott Mar 3 '10 at 11:34

If the only issue is that you want to use the right print statement to avoid syntax errors, you can avoid the problem altogether by using the print() function in Python 2.6:

if sys.version_info[0:2] == (2,6):           # Or you could use try/except here
    from __future__ import print_function
print("Now you can use print as a function regardless of whether you're on 2.6 or 3.x!")

Of course, if you also want to support earlier versions of Python, this won't work.

share|improve this answer
I want to do a number of things. This is food for thought. Thanks. – Hamish Grubijan Mar 3 '10 at 4:11
It looks like you want an unconditional from __future__ import print_function here. That version would still work fine on 2.6, but it wouldn't break with 2.7 like yours does. (This is what I mean when I say trying to handle different versions by checking the version information is fragile.) – Mike Graham Mar 4 '10 at 23:20

On Linux, Mac etc, you should use the standard first line:

#!/usr/bin/env python2

or

#!/usr/bin/env python2.6

or

#!/usr/bin/env python3

On Windows, having such a first line is useful from a documentation point of view, even if Windows doesn't use it to choose the interpreter.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.