EN
Python - change list item value
0 points
In this article, we would like to show you how to change list item value in Python.
Quick solution:
xxxxxxxxxx
1
my_list = ['A', 'B', 'C']
2
3
my_list[2] = 'X'
4
5
print(my_list) # ['A', 'B', 'X']
In this example, we refer to the index number to change the value of an item under index 2
.
xxxxxxxxxx
1
my_list = ['A', 'B', 'C']
2
3
my_list[2] = 'X'
4
5
print(my_list) # ['A', 'B', 'X']
Output:
xxxxxxxxxx
1
['A', 'B', 'X']