Changes to Python since Dive into Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T10:31:03Zhttp://stackoverflow.com/feeds/question/1080734http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080734/changes-to-python-since-dive-into-python5Changes to Python since Dive into PythonAlasdair2009-07-03T20:28:33Z2009-07-04T02:36:22Z
<p>I've been teaching myself Python by working through <a href="http://www.diveintopython.org/" rel="nofollow">Dive Into Python</a> by Mark Pilgrim. I thoroughly recommend it, as do <a href="http://stackoverflow.com/questions/34570/what-is-the-best-quick-read-python-book-out-there/34608#34608">other Stack Overflow users</a>.</p>
<p>However, the last update to Dive Into Python was five years ago. I look forward to reading the new <a href="http://diveintopython3.org/" rel="nofollow">Dive into Python 3</a> When I make the switch to 3.x, but for now, using django means I'll stick to 2.x.</p>
<p>I'm interested to know what new features of Python I'm missing out on, if I've used Dive Into Python as my primary resource for learning the language. A couple of examples that I've come across are</p>
<ul>
<li>itertools</li>
<li>ElementTree</li>
</ul>
<p>Is there anything else I'm missing out on?</p>
<p>edit: As Bastien points out in his answer, I could just read the <a href="http://docs.python.org/whatsnew/" rel="nofollow">What's New in Python</a> pages, but sometimes it's fun to discover a useful tip on Stack Overflow rather than struggle through the complete, comprehensive answer in the official documentation.</p>
http://stackoverflow.com/questions/1080734/changes-to-python-since-dive-into-python/1080763#10807630Answer by Bastien Léonard for Changes to Python since Dive into PythonBastien Léonard2009-07-03T20:42:06Z2009-07-03T20:42:06Z<p>I suggest that you read the “what's in Python 2.x?” documents.
Some things that may have missed:</p>
<ul>
<li>New-style classes (allows standard types subtyping, properties, ...).</li>
<li>The <code>with</code> keyword, which helps allocating and releasing resources.</li>
</ul>
http://stackoverflow.com/questions/1080734/changes-to-python-since-dive-into-python/1080838#1080838-1Answer by Ed L for Changes to Python since Dive into PythonEd L2009-07-03T21:09:23Z2009-07-03T21:09:23Z<ul>
<li>generator expressions<br/></li>
<li>function decorators<br/></li>
<li>metaclasses</li>
</ul>
http://stackoverflow.com/questions/1080734/changes-to-python-since-dive-into-python/1081056#10810563Answer by sunqiang for Changes to Python since Dive into Pythonsunqiang2009-07-03T22:42:56Z2009-07-03T22:42:56Z<p>Mark(author of the book) had <a href="http://www.reddit.com/r/Python/comments/8miar/im%5Fnew%5Fto%5Fpython%5Fshould%5Fi%5Fread%5Fdive%5Finto%5Fpython%5F3/c09s45y" rel="nofollow">some comments</a> on this. I've shamelessly copied the related paragraph here:<br />
"""If you choose Python 2, I can only recommend "Dive Into Python" chapters 2-7, 13-15, and 17. The rest of the book is horribly out of date."""</p>
http://stackoverflow.com/questions/1080734/changes-to-python-since-dive-into-python/1081188#10811883Answer by Alasdair for Changes to Python since Dive into PythonAlasdair2009-07-04T00:19:26Z2009-07-04T00:27:28Z<p>Here's a couple of examples of the sort of answer I was thinking of:</p>
<h3>Conditional Expressions</h3>
<p>Instead of the <a href="http://www.diveintopython.org/power%5Fof%5Fintrospection/and%5For.html#d0e9975" rel="nofollow">and-or trick</a>, 2.5 offers a new way to write <a href="http://docs.python.org/whatsnew/2.5.html?highlight=with%5Fstatement#pep-308-conditional-expressions" rel="nofollow">conditional expressions</a>.</p>
<pre><code>#and-or trick:
x = condition and 'true_value' or 'false_value'
#new in 2.5:
x = 'true_value' if condition else 'false_value'
</code></pre>
<h3>Testing for keys in dictionaries</h3>
<p>has_key() <a href="http://docs.python.org/library/stdtypes.html?highlight=has%5Fkey#dict.has%5Fkey" rel="nofollow">is deprecated</a> in favor of key in d.</p>
<pre><code>>>>d={'key':'value','key2':'value2'}
>>>'key1' in d
True
</code></pre>
http://stackoverflow.com/questions/1080734/changes-to-python-since-dive-into-python/1081252#10812523Answer by cdleary for Changes to Python since Dive into Pythoncdleary2009-07-04T01:02:12Z2009-07-04T01:25:47Z<p>Check out <a href="http://docs.python.org/whatsnew/" rel="nofollow">What's New in Python</a>. It has all the versions in the 2.x series. Per Alex's comments, you'll want to look at all Python 2.x for x > 2.</p>
<p>Highlights for day-to-day coding:</p>
<p><em>Enumeration</em>: Instead of doing:</p>
<pre><code>for i in xrange(len(sequence)):
val = sequence[i]
pass
</code></pre>
<p>You can now more succinctly write:</p>
<pre><code>for i, val in enumerate(iterable):
pass
</code></pre>
<p>This is important because it works for non-getitemable iterables (you would otherwise have to use an incrementing index counter alongside value iteration).</p>
<p><em>Logging</em>: a sane alternative to print-based debugging, standardized in a Log4j-style library module.</p>
<p><em>Booleans</em>: True and False, added for clarity: <code>return True</code> clearer intention than <code>return 1</code>.</p>
<p><em>Generators</em>: An expressive form of lazy evaluation</p>
<pre><code>evens = (i for i in xrange(limit) if i % 2 == 0)
</code></pre>
<p><em>Extended slices</em>: Builtins support strides in slices.</p>
<pre><code>assert [1, 2, 3, 4][::2] == [1, 3]
</code></pre>
<p><em>Sets</em>: For O(1) lookup semantics, you no longer have to do:</p>
<pre><code>pseudo_set = {'foo': None, 'bar': None}
assert 'foo' in pseudo_set
</code></pre>
<p>You can now do:</p>
<pre><code>set_ = set(['foo', 'bar'])
assert 'foo' in set_
</code></pre>
<p><em>Reverse iteration</em>: <code>reversed(sequence)</code> is more readable than <code>sequence[::-1]</code>.</p>
<p><em>Subprocess</em>: Unifies all the ways you might want to invoke a subprocess -- capturing outputs, feeding input, blocking or non-blocking.</p>
<p><em>Conditional expressions</em>: There's an issue with the idiom:</p>
<pre><code>a and b or c
</code></pre>
<p>Namely, when b is falsy. <code>b if a else c</code> resolves that issue.</p>
<p><em>Context management</em>: Resource acquisition/release simplified via the <code>with</code> statement.</p>
<pre><code>with open(filename) as file:
print file.read()
# File is closed outside the `with` block.
</code></pre>
<p><em>Better string formatting</em>: Too much to describe -- see Python documentation under <code>str.format()</code>.</p>
http://stackoverflow.com/questions/1080734/changes-to-python-since-dive-into-python/1081361#10813611Answer by David Cournapeau for Changes to Python since Dive into PythonDavid Cournapeau2009-07-04T02:33:06Z2009-07-04T02:33:06Z<p>A few "minor" features were added in 2.4 and are pervasive in new 2.x python code: decorator (2.4) and try/except/finally clauses. Before you could not do:</p>
<pre><code>try:
do_something()
except FunkyException:
handle_exception():
finally:
clean_up()
</code></pre>
<p>Both are essentially syntactic sugar, though, since you could do the same, just with a bit more code.</p>
http://stackoverflow.com/questions/1080734/changes-to-python-since-dive-into-python/1081367#10813671Answer by Lucas McCoy for Changes to Python since Dive into PythonLucas McCoy2009-07-04T02:36:22Z2009-07-04T02:36:22Z<pre><code>import antigravity
</code></pre>
<p><a href="http://imgs.xkcd.com/comics/python.png" rel="nofollow">See the documentation</a></p>