Colab

cheeses = ['adam', 'bree', 'cheddar', 'stilton', 'gouda', 'cottage']

'ADAM'.title()

'Adam'
for cheese in cheeses:
    print(cheese.title())

Adam
Bree
Cheddar
Stilton
Gouda
Cottage
cheeses

['adam', 'bree', 'cheddar', 'stilton', 'gouda', 'cottage']