Thinkcspy Chapter 18: Classes and Objects Part 2
If you haven't already, take a look at Chapter 17, before you read this one, as this set of exercises relies on what was built in the last chapter. Just…
If you haven't already, take a look at Chapter 17, before you read this one, as this set of exercises relies on what was built in the last chapter. Just…
Because the code for this and the next chapter build on each other, I'm approaching the way I talk about these two sets of exercises a bit differently than previous…
The exercises in this chapter were some of the most challenging exercises I have encountered in this book. It took me a while to wrap my head around recursion and…
So the calculator project. Heh. Things were going so smoothly. I'd finished it within a span of a few days. Found a couple nice fonts, added a fun little Matrix…
I have taken far too long of a break from this blog in part because I was working on some personal tech projects that were adjacent to what I was…
This lab builds on the previous one, so check that one out before reading this one. Here are the instructions: The previous lab wrote a function to return a dictionary…
The goal for this lab was to count the number of times a specific letter shows up in a given string. This is what they started me out with: def…
Problem 1 Write a program that allows the user to enter a string. It then prints a table of the letters of the alphabet in alphabetical order which occur in…
Often, The Odin project will link out to other resources for reading material and active coding assignments. This was one of those times. This one came from MDN Web Docs.…