If the site stays the same for too long, I begin to hate it. Naturally, I decided to experiment a bit with the site layout again. Check it out!
Welcome to The Renegade Coder, a site for people interested in Python programming and college teaching! Join me on Patreon for even more content.
Latest Articles
How to Create a List in Python: Loops, Comprehensions, and More
As this series grows, I find myself digging back into the basics. Today, we'll look at a few ways to create a list in Python.
How to Compute Absolute Value in Python: Control Flow, Abs(), and More
Today, I'm sharing a few ways to compute absolute value in Python. If you thought the standard library was the only way to get it done, buckle up!
Are you worried that people might reverse engineer your script? One way to combat that issue is to obfuscate your code. Luckily, it's not too hard to d
How to Increment a Number in Python: Operators, Functions, and More
It's surprisingly common to want to increment a number in Python. Yet, I haven't seen a lot written about it. Here's my attempt!
How to Brute Force Sort a List in Python: Bubble, Insertion, and Selection
Sorting is a common topic in computer science, so figured I'd put together an article on how to sort a list in Python using some of the simpler approaches.
