We are entering the last few days for the Kickstarter Campaign for my second book, Python 201. Since we're almost to our stretch goal, I have added new chapters to the book. In addition to what was already covered, the book will also cover the following topics: Python's super() descriptors (magic methods) Scope (local, global […]
This week we welcome Thomas Robitaille (@astrofrog) as our PyDev of the Week! Thomas is the lead developer of the Glue data exploration package and one of the lead developers of the Astropy project, which is a Python library for Astronomy. He also writes a fun Python blog. Let's take a few moments to get […]
My artist got back to me today with a mostly done cover that I wanted to share with you all: We have 8 days left in the campaign and we're almost to our stretch goal! Be sure to tell your friends that now's the best time to show support for this fun book! You can […]
This week we welcome Ezio Melotti as our PyDev of the Week! Ezio is a core developer of the Python language. You can get an idea of what he's been up to via his bitbucket page. Let's take a few moments to get to know him! Can you tell us a little about yourself (hobbies, […]
Python's collections module has another great subclass of dict known as OrderedDict. As the name implies, this dictionary keeps track of the order of the keys as they are added. If you create a regular dict, you will note that it is an unordered data collection: >>> d = {'banana': 3, 'apple':4, 'pear': 1, 'orange': […]
We're halfway through the Kickstarter campaign for my new book, Python 201 and we're a little over halfway to my first stretch goal. If you know anyone who would like to add to their Python skills, be sure to post a link to the campaign to your social website(s) of choice. I also added a […]