diff --git a/whats-new.html b/whats-new.html index 49bb3e9..9c68071 100644 --- a/whats-new.html +++ b/whats-new.html @@ -19,7 +19,7 @@ h3:before{content:''}

 

a.k.a. “the minus level”

-

Are you already a Python programmer? Did you read the original “Dive Into Python”, or maybe even buy it on paper? (Thanks!) Are you ready to take the plunge into Python 3? … If so, read on. (If none of that is true, you’d be better off starting at the beginning.) +

Are you already a Python programmer? Did you read the original “Dive Into Python”? Did you buy it on paper? (If so, thanks!) Are you ready to take the plunge into Python 3? … If so, read on. (If none of that is true, you’d be better off starting at the beginning.)

Python 3 comes with a script called 2to3. Learn it. Love it. Use it. Porting Code to Python 3 with 2to3 is a reference of all the things that the 2to3 tool can fix automatically. Since a lot of those things are syntax changes, it’s a good starting point to learn about a lot of the syntax changes in Python 3. (print is now a function, `x` doesn’t work, &c.)