capiatlize first letter in list code example

Example 1: how to capitalize the first letter in a list python

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

Example 2: capiatlize first letter in list

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
   
   Output:

   Johnny rotten, Eddie vedder, Kurt kobain, Chris cornell, Micheal phillips jagger

Tags:

Misc Example