Python F-String Formatting
This tutorial will discuss using the Python f-string formatting, also called “formatted string literals.” F-string is a great and easy[…]
Read moreUse Python to automate office tasks
This tutorial will discuss using the Python f-string formatting, also called “formatted string literals.” F-string is a great and easy[…]
Read moreI will show you how to split an Excel file into multiple files using Python in this short tutorial. Splitting[…]
Read moreThis tutorial will show you how to generate random and unique data in Python easily and we will use a[…]
Read moreThe pandas pivot() method can help turn a dataframe from a long to a wide format. We’ll demonstrate how to[…]
Read moreSometimes we might need to turn a pandas dataframe from a wide format to a long format. This can be[…]
Read moreThis tutorial will introduce you to the streamlit session state. Streamlit is super powerful and easy to use for creating[…]
Read moreSometimes we need to perform data binning and the pandas method between() can help us achieve that goal. Data binning[…]
Read moreSometimes we need to perform data binning and pandas provides a convenient method cut for exactly that purpose. Essentially we[…]
Read moreThe pandas idxmax() method can make some operations really simple. For example, getting the first row in a dataframe based[…]
Read moreIn this tutorial we’ll cover how to round values up, down, to the nearest numbers in pandas. Let’s use the[…]
Read more