2
Print the value counts of the Category column BEFORE cleaning to show the mess
3
Strip leading and trailing whitespace from Category using .str.strip()
4
Replace abbreviations: HW becomes Hardware, SW becomes Software, SVC becomes Services
5
Title-case the Category column using .str.title()
6
Print the value counts of the Category column AFTER cleaning to show the cleanup worked