Python math.floor() function

In today's post, we'll look at how we can round a floating-point number down to the nearest integer in Python. Specifically, we'll be looking at the Python math.floor() function and the differences...

Python find() Function

In today's practice question, we are going to write a function that gives us all the occurrences of a certain substring in a string. Here are some topics we'll cover in this post: How to use...