Skip to content

Blog

#105: Multiply Strings in Python

While working through a Pluralsight course I noticed a strange looking command that seams to make no sense: '-' * 100. As it turns out, we can multiply strings in Python and this provides some nice amenities for our cli applications.

#103: Working With CSV Files in Pandas

Until now I use Excel to make a Pivot out of my data stored in CSV files. While this works, I need a lot of manual steps that are cumbersome and time-consuming. Pandas offers an automatable way to do this task, but before I can create the pivot, I need to import my data. Let us look how we can do this part with pandas.