get a list of name and make them title caps and print the lis 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: how to capitalize first letter in python in list using list comprehension
my_list = ['apple pie', 'orange jam']
print my_list[0].capitalize()