Exercise 23: Read Some Code You should have spent last week getting your list of symbols straight and locked in your mind. Now you get to apply this to another week reading code on the internet. This exercise will be daunting at first. I'm going to throw you in the deep end for a few days and have you just try your best to read and understand some source code from real projects. The goal isn't to get you to understand code, but to teach you the following three skills: Finding Python source code for things you need. Reading through the code and looking for files. Trying to understand code you find. At your level you really do not have the skills to evaluate the things you find, but you can benefit from getting exposure and seeing how things look. When you do this exercise, think of yourself as an anthropologist, trucking through a new land with just barely enough of the local language to get around and survive. Except, of course, that you will actually get out alive because the internet isn't a jungle. Anyway. Here's what you do: Go to bitbucket.org with your favorite web browser and search for "python". Avoid any project with "Python 3" mentioned. That'll only confuse you. Pick a random project and click on it. Click on the Source tab and browse through the list of files and directories until you find a .py file (but not setup.py, that's useless). Start at the top and read through it, taking notes on what you think it does. If any symbols or strange words seem to interest you, write them down to research later. That's it. Your job is to use what you know so far and see if you can read the code and get a grasp of what it does. Try skimming the code first, and then read it in detail. Maybe also try taking very difficult parts and reading each symbol you know outloud. Now try several three other sites: github.com launchpad.net koders.com Copyright (C) 2010 Zed. A. Shaw Credits