Languages
[Edit]
EN

Python - change list item value

0 points
Created by:
Admin Dirask Community
4380

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']

Alternative titles

  1. Python - replace list item
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - list (popular problems)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join