singers = ['johnny rotten', 'eddie vedder', 'kurt kobain', 'chris cornell', 'micheal phillip jagger']     singers = [singer.capitalize() for singer in singers]     print(singers)     #instead of capitalize use title() to have each word start with capital letter

Read more of this post