How to use Lambda Function In Python

In this method, we use lambda and map function to replace the value in the list. map() is a built-in function in python to iterate over a list without using any loop statement. A lambda is an anonymous function in python that contains a single line expression. Here we gave one expression as a condition to replace value. Here we replace ‘Pant’ with ‘Ishan’ in the lambda function. Then using the list() function we convert the map object into the list.

Syntax: l=list(map(lambda x: x.replace(‘old_value’,’new_value’),l))

Python3




# Replace Values in a List using Lambda Function
 
# define list
l = ['Hardik', 'Rohit', 'Rahul', 'Virat', 'Pant']
 
# replace Pant with Ishan
l = list(map(lambda x: x.replace('Pant', 'Ishan'), l))
 
# print list
print(l)


Output:

['Hardik', 'Rohit', 'Rahul', 'Virat', 'Ishan']

How to Replace Values in a List in Python?

In this article, we are going to see how to replace the value in a List using Python. We can replace values in the list in serval ways. Below are the methods to replace values in the list.

  • Using list indexing
  • Using for loop
  • Using while loop
  • Using lambda function
  • Using list slicing

Similar Reads

Method 1: Using List Indexing

We can access items of the list using indexing. This is the simplest and easiest method to replace values in a list in python. If we want to replace the first item of the list we can di using index 0. Here below, the index is an index of the item that we want to replace and the new_value is a value that should replace the old value in the list....

Method 2: Using For Loop

...

Method 3: Using While Loop

We can use for loop to iterate over the list and replace values in the list. Suppose we want to replace ‘Hardik’ and ‘Pant’ from the list with ‘Shardul’ and ‘Ishan’. We first find values in the list using for loop and if condition and then replace it with the new value....

Method 4: Using Lambda Function

...

Method 5: Using List Slicing

We can also use a while loop to replace values in the list. While loop does the same work as for loop. In the while loop first, we define a variable with value 0 and iterate over the list. If value matches to value that we want to replace then we replace it with the new value....

Method 6: Using functools.reduce method:

...

Contact Us