The Key Differences Between Python 2 and Python 3

October 05 2015
 

Learn about the key differences between Python 2 and Python 3 and which version of Python to use depending on the libraries and packages.


If you are new to Python, you might be confused about the different versions that are available. Although Python 3 is the latest generation of the language, many programmers still use Python 2.7, the final update to Python 2, which was released in 2010.

There is currently no clear-cut answer to the question of which version of Python you should use; the decision depends on what you want to achieve. While Python 3 is clearly the future of the language, some programmers choose to remain with Python 2.7 because some older libraries and packages only work in Python 2.

Why Are There Different Versions of Python?

Programming languages constantly evolve as developers extend the functionality of the language and iron out quirks that cause problems for developers. Python 3 was introduced in 2008 with the aim of making Python easier to use and change the way it handles strings to match the demands placed on the language today. Programmers who first learned to program in Python 2 sometimes find the new changes difficult to adjust to, but newcomers often find that the new version of the language makes more sense.

Python 3.0 is fundamentally different to previous Python releases because it is the first Python release that is not compatible with older versions. Programmers usually don’t need to worry about minor updates (e.g. from 2.6 to 2.7) as they usually only change the internal workings of Python and don’t require programmers to change their syntax. The change between Python 2.7 (the final version of Python 2) and Python 3.0 is much more significant — code that worked in Python 2.7 may need to be written in a different way to work in Python 3.0.

Key Differences Between Python 2 and Python 3

Here are some key differences between Python 2 and Python 3 that can make the new version of the language less confusing for new programmers to learn:

  • Print: In Python 2, “print” is treated as a statement rather than a function. There is no need to wrap the text you want to print in parentheses, although you can if you want. This can be confusing, as most other actions in Python use functions that require the arguments to be placed inside parentheses. It can also lead to unexpected outcomes if you put parentheses around a comma-separated list of items that you want to print. In contrast, Python 3 explicitly treats “print” as a function, which means you have to pass the items you need to print to the function in parentheses in the standard way, or you will get a syntax error. Some Python 2 programmers find this change annoying, but it can help to prevent mistakes.
  • Integer Division: Python 2 treats numbers that you type without any digits after the decimal point as integers, which can lead to some unexpected results during division. For example, if you type the expression 3 / 2 in Python 2 code, the result of the evaluation will be 1, not 1.5 as you might expect. This is because Python 2 assumes that you want the result of your division to be an integer, so it rounds the calculation down to the nearest whole number. In order to get the result 1.5, you would have to write 3.0 / 2.0 to tell Python that you want it to return a float, that is, to include digits after the decimal point in the result. Python 3 evaluates 3 / 2 as 1.5 by default, which is more intuitive for new programmers.
  • List Comprehension Loop Variables: In previous versions of Python, giving the variable that is iterated over in a list comprehension the same name as a global variable could lead to the value of the global variable being changed — something you usually don’t want. This irritating bug has been fixed in Python 3, so you can use a variable name you already used for the control variable in your list comprehension without worrying about it leaking out and messing with the values of the variables in the rest of your code.
  • Unicode Strings: Python 3 stores strings as Unicode by default, whereas Python 2 requires you to mark a string with a “u” if you want to store it as Unicode. Unicode strings are more versatile than ASCII strings, which are the Python 2 default, as they can store letters from foreign languages as well as emoji and the standard Roman letters and numerals. You can still label your Unicode strings with a “u” if you want to make sure your Python 3 code is compatible with Python 2.
  • Raising Exceptions: Python 3 requires different syntax for raising exceptions. If you want to output an error message to the user, you need to use the syntax:

raise IOError(“your error message”)

This syntax works in Python 2 as well. The following code works only in Python 2, not Python 3:

raise IOError, “your error message”

There are many other examples of slight differences in syntax between Python 2 and Python 3. A cheat sheet of key syntax differences is available from Python-Future to help you write code that is compatible with both versions of Python. In addition to syntax differences, there are other key differences, such as how the two versions of Python handle strings, as described above. Python 3.3 performs at approximately the same speed as Python 2.7, although some benchmarks measure the new language as being much faster.

Python 2 or Python 3 Library Versions

Python 2 has been around longer, which can be an advantage, and not all the libraries available for Python 2 have been ported to Python 3. On the other hand, some developers are creating libraries for Python 3 that may not be compatible with Python 2. For many people, the decision whether to use Python 2 or Python 3 comes down to which libraries they want to use. Of course, if you are learning Python to work on an existing Python application, then it makes sense to learn to use whichever version of Python the software is written in.

Many people consider Python 3 to be an improved version of Python 2, as some of the updates eliminate common mistakes made by programmers (see the print example above). As described above, some of the changes have made Python 3 easier to understand for beginners. Therefore, new programmers who don’t need to use any particular libraries might want to consider learning Python 3 since there is likely to be a gradual shift to the new language over the coming years, as updates for Python 2 stop and support for the old version of the language decreases. Usage statistics shows that the number of programmers using Python 3 is already gradually increasing.

Unless there is a clear reason for choosing one version of Python over the other, such as needing to work on existing code written in Python 2, then it is not worth worrying too much about the decision. Most of the syntax is the same in each version of the language. If you ever need to switch from Python 2 to Python 3, or vice versa, it shouldn’t take too long to familiarize yourself with differences such as the changes to the print statement/function and the way Python treats integer division.

Python 3 is slowly gaining more developers

In a survey of 6,746 programmers conducted in 2014, roughly two-thirds said they write more code in Python 2 than Python 3. However, Python 3 is rapidly gaining ground; in 2013, only 22 percent of people said they wrote more code in the new version of the language.

When programmers start a personal project, just under half, use Python 3, with the rest preferring to stick with Python 2. Among the reasons for not making the switch to Python 3, people cited dependence on packages only available for Python 2 and having a large base of legacy code written in Python 2 that would need to be upgraded. Others claimed that they simply have no incentive to move to Python 3 as Python 2 meets their needs, and they are used to working with it.

Python 2 vs. Python 3: Summary

The transition from Python 2 to Python 3 is happening slowly, but it is underway. You can successfully write effective, useful and efficient code using either version of the language, so there is no need to agonize too much over which version to learn as your introduction to Python. However, it is a good idea to be aware that there are material differences between Python 2 and Python 3 in case you ever need to deal with code that is written in the version of the language with which you are less familiar.

If you are a Python programmer who is thinking of making the switch from Python 2 to Python 3, there are a few improvements in Python 3 that could make your effort worthwhile. Before porting your Python 2 project to Python 3, check that the libraries it depends on are supported in Python 3.

As time goes by, and new updates to Python 3 are released, the proportion of programmers using Python 3 rather than Python 2 is likely to increase. It is your decision whether you want to join the trend toward Python 3 now or hang on to Python 2 until the requirements of your project force you to make the switch.

Omed Habib
Omed Habib is a Director of Product Marketing at AppDynamics. He originally joined AppDynamics as a Principal Product Manager to lead the development of their world-class PHP, Node.js and Python APM agents. An engineer at heart, Omed fell in love with web-scale architecture while directing technology throughout his career. He spends his time exploring new ways to help some of the largest software deployments in the world meet their performance needs.

Thank you! Your submission has been received!

Oops! Something went wrong while submitting the form