I have Pandas DataFrame like this:
data = pd.DataFrame({"car":["mazda", "audi", "audi", "bmw", "mazda"]})
I would like to have all values like for instance: mazda, audi and so on from big letter at the beginning. So I want to have for example not mazda but Mazda, this operation I would like to make on the whole values in "car" Serie.