Tiny Python Projects is a progression of coding challenges designed to take you from novice to Pythonista. There are 22 programs for you to write that include tests so you know when you have solved the problems correctly. So really you'll be learning Python and how to test programs. We'll also talk about how to parameterize our programs so that they are flexible and documented.

Below are links to all the video playlists on YouTube or click the chapter link to find all the videos and source code on GitHub.

The Programs

Chapter 1: How to write and test a Python program
How to create a Python program, understanding comments and the shebang, how to make a program executable and install into your $PATH, how to write a main() function, add docstrings, format your code, and run tests.
Chapter 2: Crow's Nest
How to write a Python program that accepts a single, positional argument and creates a newly formatted output string.
Chapter 3: Picnic
Writing a Python program that accepts multiple string arguments and formats the results depending on the number of items.
Chapter 4: Jump The Five
Writing a Python program to encode the numerals in a given text using an algorithm called "Jump The Five." Use of a dictionary as a lookup table, characters not in the dictionary remain unchanged. Introduction to encoding/decoding text, basic idea of encryption.
Chapter 5: Howler
Writing a Python program that can process input text either from the command line or from a file.The output prints either to STDOUT or to a file. Learning about "os.path.isfile()", how to "open()" a file handle for reading/writing, how to read/write the contents of a file.
Chapter 6: Word Count
Writing a Python program to emulate the `wc` (word count) program. Validates and processes multiple file inputs as well as STDIN and creates output of the counts of lines, words, and bytes for each file optionally with a "total" if more than one file is provided.
Chapter 7: Gashlycrumb
Writing a Python program that processes an input file to build a lookup table (dictionary) that is used with multiple positional arguments to translate to the values from the file.
Chapter 8: Apples and Bananas
Writing a Python program to find and replace elements in a string. Exploring multiple ways to write the same idea from for loops to list comprehensions to higher-order functions like map().
Chapter 9: Abuse (The Insult Generator)
Writing a Python program to generate Shakespearean insults by randomly combining some number of adjectives with a randomly chosen noun. Learning about randomness, seeds, testing, how to use triple-quoted strings.
Chapter 10: Telephone
Using probabalistic and deterministc approaches to randomly mutating a string.
Chapter 11: Bottles of Beer
Writing a Python program to produce the verse to the "99 Bottles of Beer" song from a given starting point. Learning to count down, format strings, algorithm design. A focus on writing a function and unit test, exploring ways to incorporate our function to generate the verses from for loops to list comprehensions to map().
Chapter 12: Ransom
Writing a Python program that will randomly capitalize letters in a given piece of text for the nefarious purpose of creating a ransom note. Exploration of for loops, list comprehensions, and the map() function.
Chapter 13: Twelve Days of Christmas
Writing a Python program to create the verses for "The Twelve Days of Christmas" from a given day. Learning how to write a function and the test for it, then using the function in a list comprehension and a map to generate the output.
Chapter 14: Rhymer
Writing a Python program that can split off any initial consonants from a word and append a list of prefixes to create new rhyming "words." Exploration of regular expressions to handle words with no initial consonants, with one or more leading consonants, and nothing but consonants. Writing a "stemmer()" function and the "test_stemmer()" function to understand it. Using list comprehensions with guard statements and how that relates to the filter() function.
Chapter 15: Kentucky Friar
In this exercise we write a program that will replace the final "g" with an apostrophe for words ending in "-ing" -- but only if they have more than one syllable. That is, "cooking" will become "cookin'", but "swing" will stay the same. Also, we'll turn every "you" into "y'all", but we have to keep the case of the starting letter the same. We'll explore how we can do this both with and without using regular expressions.
Chapter 16: Scrambler
Tihs porgram will sbamlcre the lretets of ecah word in a given txet wihle levniag the first and lsat lrteets in pclae. You can slitl raed the rlnteisug text, but it teaks a llttie mroe erofft. Elrixnopg regalur erxossepins, ramosdnens, maltube and immbtaule data suertuctrs, uint ttsineg, and higehr-oedrr funtcnios.
Chapter 17: Mad Libs
We explore how to use regular expressions to find placeholders in a Mad Libs-style text so that we can as the user for an <adjective> and replace the <adjective> with the value from the user. We also look at a solution that does not use regular expressions.
Chapter 18: Gematria
Gematria is a system for assigning a number to a word by summing the numeric values of each of the characters. While there are many ways we could assign each character a value, we'll use the built-in "ord()" function and explore higher-order functions like "map()" and "reduce()".
Chapter 19: Workout of the Day
Here we learn how to read a delimited text file that contains a header row followed by records where the columns are separated by commas. This format is commonly called "comma-separated value" or a "CSV" file, and we'll use the "csv" module to parse it into values we can use to randomly generate a workout so we don't have to think of exercises.
Chapter 20: Password Generator
It can be difficult to create a password that is easy to remember and difficult to guess. We'll use an idea from an XKCD comic to randomly select a few words from some source(s) to create a (probably) unbreakable password. We'll also explore how to obfuscate it using ideas from the "Ransom" chapter and the "Jump The Five" program. We have to be very careful about the order of operations, though, as we're using the "random" module! Introduction to the idea of program state.
Chapter 21: Tic-Tac-Toe
Here we create a text-based version of the ever-popular Tic-Tac-Toe game. We'll only play one round, though, as we consider how to validate the user input using Boolean logic and regular expressions. We'll continue to think about program state as we consider how to expand the program to play an entire game interactively.
Chapter 22: Interactive Tic-Tac-Toe
We build upon the previous chapter's Tic-Tac-Toe game and push how we can use a custom class/datatype based upon immutable named tuples to represent state as we play an entire game interactively in the terminal. We introduce type hints, and explore how "mypy" can be used to spot type errors in our program.
Chapter 23: Appendix: Examples using argparse
This chapter includes many examples of how to use argparse.