Converting Strings to Upper and Lower Case
Learn how to convert strings to upper and lower case with Pandas.
We'll cover the following...
We'll cover the following...
Upper and lower case
Python is case-sensitive. This means that we need to have the strings in standard format in order to perform analysis on them. Thankfully, it’s quite simple to change a string’s case in Pandas.
The names in our staff
have both upper and lower case letters. Let’s ...