
Help and Tips
Get flash to fully experience Pearltrees
Improving Your Python Productivity | Eventual Consistency
I've been programming in python for a few years now, and I'm still often amazed by how clear and DRY well written Python code can be. There are many small tips and tricks I've learned over time, mostly by reading the code of popular open source projects, such as Django , Flask , Requests and others. Here are a few things I've picked up that are sometimes overlooked, but can really help with everyday work. 1.Better Python APIs | Eventual Consistency
Determining the Name of a Process from Python - Doug Hellmann
Finding the name of the program from which a Python module is running can be trickier than it would seem at first, and investigating the reasons led to some interesting experiments. A couple of weeks ago at the OpenStack Folsom Summit, Mark McClain pointed out an interesting code snippet he had discovered in the Nova sources : nova/utils.py: 339 script_dir = os . path . dirname ( inspect . stack ()[ - 1 ][ 1 ])Python Iteration
Created 24 April 2012, last updated 19 March 2013 This is a presentation I gave at PyCon 2013. You can read the slides and text on this page, or open the actual presentation in your browser (use right and left arrows to advance the slides), or watch the video: A talk for PyCon 2013.Python Community Sites
3. Using Python on Windows — Python v2.7.2 documentation
A Python for Windows Tutorial
pycon 2010 atlanta presents the mighty dictionary (#55) by brandon craig rhodes video produced by carl karsten & a team in conjunction with the psf and support from: [sauce ___ ijwbitz you too can support the psf: http://www.python.org/psf/donations/ 9: how can python lists access every one of their items with equal speed? timeit(’mylist[o]’, my1ist = [1] * 9000’) /1 — -> 0.053692102432250977 ‘50 ns per getitern timeit(’mylist[7000]’, ‘mylist = [1] * 90001) # -- 0.051i60ø276947ø2148 —50 ns per getitem 9: how can python lists access every one of their items with equal speed?

