ItSolutionStuff.com

How to Convert List to Lowercase in Python?

By Hardik Savani • October 30, 2023
Python

In this tutorial, I will show you python convert list values to lowercase. In this article, we will implement a convert list to lowercase python. if you want to see an example of convert list elements to lowercase python then you are in the right place. I would like to show you convert list data to lowercase python.

There are many ways to convert list elements to lowercase in python. i will give you two examples using for loop with lower() to convert list data to lowercase. so let's see the below examples.

You can use these examples with python3 (Python 3) version.

let's see below a simple example with output:

Example 1:

main.py

myList = ['One', 'TWO', 'Three']
  
# Convert List Value into lowercase
for i in range(len(myList)):
    myList[i] = myList[i].lower()
  
print(myList)

Output:

['one', 'two', 'three']

Example 2:

main.py

myList = ['One', 'TWO', 'Three']
  
# Convert List Value into lowercase
newList = [x.lower() for x in myList]
  
print(newList)

Output:

['one', 'two', 'three']

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Python Split String into List of Characters Example

Read Now →

How to Convert String into List in Python?

Read Now →

How to Remove Duplicate Values from List in Python?

Read Now →

How to Get Unique Elements from List in Python?

Read Now →

How to Remove null Values from the List in Python?

Read Now →

Python Remove Empty String from List Example

Read Now →

Python Get Second Last Element of List Example

Read Now →

How to Get the Last Element of a List in Python?

Read Now →

How to Get First Element of List in Python?

Read Now →

How to Remove Last Element from List in Python?

Read Now →

How to Remove First Element from List in Python?

Read Now →

Python List Remove Element by Value Example

Read Now →