Today, we're expanding our concept map with the concept of loops in Python! Unless you're a complete beginner, you probably know a thing or two about loops, but maybe I can teach you something new.
Tag: Software Development
Today, we're talking about constructors! Specifically, we'll look at the __init__() special method in Python, which functions as a constructor.
In this article, we'll take a look at what snake case is, when you would use it, and even why you should use it.
How to Automatically Calculate Letter Grades, But Every Solution Is Bad
Let's say you have your grade as a percentage. Would you be able to write a code segment that could convert that percentage to a letter grade? That's a question that blew up recently on Twitter, and...
As the semester starts to wrap up, I'm a bit busy and a bit burnt out. As a result, I thought I'd have a little fun writing about nasty little bugs I've run into over time. I'll keep it short; don't...
I find the structure of relational databases to be appealing. They allow you to store data in various tables that eliminate redundancy, reduce storage size, and combine easily. Therefore, it should...