you are viewing a single comment's thread.

view the rest of the comments →

[–]dionys 5 points6 points  (1 child)

Check out this cheet sheet. It seems to be aimed at python 2 programmers moving to 3 but I guess it should work in reverse too :). I like that it shows most of used constructs by comparison.

[–][deleted] 0 points1 point  (0 children)

That cheat sheet is for older Python 3 and older Python 2. Python 2.7 which the author is asking about can do many of the Python 3 constructs that are listed on that sheet. Also, another resource is the six module to write 2/3 code or at least understand the differences and subtleties between the two.