When you try to retrieve a character that doesn't exist in a string, you get an IndexError. In this article, we'll talk more about what that means.
Tag: Testing
In an effort to help out more Python folks, I figured I'd start a series covering errors. Up first, we're going to chat about a special SyntaxError.
A lot of students run into trouble when they're asked to complete a programming project from scratch for the first time. Here are some tips!
If you're trying Python for the first time, it's a good idea to learn how to write a loop. Luckily, I've got you covered.
How to Add an Item to a List in Python: Append, Slice Assignment, and More
Whether or not you know how to add an item to a list in Python, you'll want to read this article just to learn about slice assignment. Trust me.
How to Check if a String Contains a Substring in Python: In, Index, and More
One concept that threw me for a loop when I first picked up Python was checking if a string contains a substring. After all, in my first language, Java, the task involved calling a method like...