Recent Posts

How to sort a list of strings in Python

There are two main ways to sort a list of strings in Python - using the built-in sort() function and the built-in sorted() function. We'll discuss how to use each function in today's post and the...

count() function in Python

In today's post, we'll discuss the count() function in Python. We'll also discuss alternatives to the count() function, which are more efficient if we want to count the occurrences of multiple...

Finding length of list in Python

In today's post, we'll learn 2 different ways to find the length of a list in Python. The length of a list refers to the number of elements in the list. We'll also work on a practice question that...