Python Convert List to Capitalize First Letter Example

Published On: 26/11/2022 | Category: Python


Hi Guys,

Now, let's see tutorial of python convert list to capitalize first letter example. you'll learn capitalize the first letter of each word. you will learn python list convert to title case. this example will help you python list convert to capitalize first letter.

In Python, There are many different ways to convert list elements to capitalize first letter in python. i will give you two examples using for loop with title() to convert list data to capitalize first letter. so let's see the below examples.

So let's see bellow example:

Example 1:

main.py
myList = ['one', 'two', 'three']
  
# Convert List Value into capitalize
for i in range(len(myList)):
    myList[i] = myList[i].title()
  
print(myList)
Output
['One', 'Two', 'Three']

Example 2:

main.py
myList = ['one', 'two', 'three']
  
# Convert List Value into capitalize
newList = [x.title() for x in myList]
  
print(newList)
Output
['One', 'Two', 'Three']

It will help you....

Happy Pythonic Coding!