Two little things to help you become an independent learner of Python, and not rely on tutorials
I donât think Iâm a fantastic writer, by any stretch. I also feel like Iâd be better able to explain and show this in a video format⊠Until then! Hereâs some quick thoughts that might make you a better Python programmer, if youâre just or still getting startedâŠ
Iâve been programming in Python for over 7 years now, and I still look things up in the documentation on a very regular basis.
Since Iâm asked a bit âhow to learn to programâ, I also try to keep up with decent materials aimed at beginners, for things to recommend.
While this is totally anecdotal, I noticed something lacking from a lot of written and video intros to Python is any mention of (or pointer back to) the actual documentation, and where to start reading, so you can start learning independently.
Especially in Python, I have found the documentation to be extremely well written, and mostly covered with examples that make a lot of sense.
So, hereâs just a quick overview of âwhere to startâ!
The built-in functions page
For the sake of completeness, here are links to the built-in functions page for Python 3 and for Python 2.
These are the most basic, primary functions that come with Python. Out of the box, these are the smallest âLego-likeâ parts that you can start building things with. There are less than 70 built-in functions listed in the Python 3.x documentation. You can see them all right here:
That page links to them all, by name, in a grid at the top. Then goes in order down the page explaining how to use each one, with basic examples.
Donât fret: You do not have to memorize this list! But youâd be well-served to skim it once in a while, and be familiar with whatâs here. Youâll get faster and faster at knowing when you need something here in the âbuilt-in functionsâ, or if you need something more âspecializedâ.
As a person who has not memorized every function and argument value (who has?) I land on this page quite a bit. Googling âPython built inâ if I canât be bothered to use a bookmark.
Think of it as just one of your tool boxes! Itâs good to be familiar with which tools are in which boxes, of course.
Iâm sure Iâm going to overlook a great example of a built-in, but hereâs just a few of the most basic things you get, right out of the box:
- Which of these numbers is the highest?
- Are any of these things true/non-empty?
- How many items are in this list?
- Do something to each of the items in this list, and give me all the results.
The Standard Library index
The built-in functions are just some of the âPython Standard Libraryâ â the standard set of tools that come with Python, that you can use without installing any extra software.
Technically, theyâre the second thing in the list⊠see?
The index of the Python Standard Library walks through the very-well organized list of stuff that comes with Python.
Thereâs a lot. But, again, you donât have to memorize this stuff! It may be years before you use even half of it!
However, âtaking a strollâ and at least skimming through this list now and then will familiarize you with the array of things available to you.
A very small example:
- Need to do things with text strings? Section 6 in the index is Text Processing Services with âa wide range of string manipulation operations and other text processing servicesâ.
- There are Numeric and Mathematical Modules
- If youâre dealing with reading and writing files, thereâs File and Directory Access
- And thereâs some very handy things in the
itertools
module, listed with the Functional Programming Modules
The point of at least looking over those parts of the documentation is so that when you come across terminology in videos or written tutorials, you wonât be stuck at âI have no idea what that isâ. Youâre more likely to remember that youâve at least seen some mention of it, and youâll be able to more quickly get to the definition, and some basic examples.
Another great resource, regarding the Python Standard Library, is the âPyMOTWâ project. It stands for âPython Module of the Weekâ. There are two areas of the site, each dedicated to Python 2 or Python 3. They walk through each section of the Standard Library, and show examples of usage, and explain what the modules are for.
Start there!?
I realize I havenât covered how to read the documentation. If youâre very new to programming, or Python, even being pointed at the Built-In Functions page may not make much sense to you.
Hopefully this is helpful to some folks, and perhaps if thereâs interest in the future, I can spend more time diving in to how I find what I need from documentation, how to read parts of it, and provide more examples and explained terminology.