From 5ea0c723871f9f068dc2029e7c414422194d398b Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Mon, 26 Apr 2010 22:07:14 -0400 Subject: [PATCH] small wording change --- whats-new.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.)