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:
my_list = ['A', 'B', 'C']
my_list[2] = 'X'
print(my_list) # ['A', 'B', 'X']
Practical example
In this example, we refer to the index number to change the value of an item under index 2
.
my_list = ['A', 'B', 'C']
my_list[2] = 'X'
print(my_list) # ['A', 'B', 'X']
Output:
['A', 'B', 'X']