>My zig >My zig >My zig Python - Change List Items >My zig >My zig >My zig >My zig >My zig >My zig
>My zig
>My zig >My zig Menu >My zig >My zig
>My zig >My zig My zig >My zig >My zig >My zig >My zig
>My zig >My zig >My zig >My zig
>My zig
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   
>My zig >My zig

Python Tutorial

Python HOME Python Intro Python Get Started Python Syntax Python Comments Python Variables >My zig Python Data Types Python Numbers Python Casting Python Strings Python Booleans Python Operators Python Lists Python Tuples Python Sets Python Dictionaries Python If...Else Python While Loops Python For Loops Python Functions Python Lambda Python Arrays Python Classes/Objects Python Inheritance Python Iterators Python Polymorphism Python Scope Python Modules Python Dates Python Math Python JSON Python RegEx Python PIP Python Try...Except Python User Input Python String Formatting

File Handling

Python File Handling Python Read Files Python Write/Create Files Python Delete Files

Python Modules

NumPy Tutorial Pandas Tutorial SciPy Tutorial Django Tutorial

Python Matplotlib

Matplotlib Intro Matplotlib Get Started Matplotlib Pyplot Matplotlib Plotting Matplotlib Markers Matplotlib Line Matplotlib Labels Matplotlib Grid Matplotlib Subplot Matplotlib Scatter Matplotlib Bars Matplotlib Histograms Matplotlib Pie Charts

Machine Learning

Getting Started Mean Median Mode Standard Deviation Percentile Data Distribution Normal Data Distribution Scatter Plot Linear Regression Polynomial Regression Multiple Regression Scale Train/Test Decision Tree >My zig Confusion Matrix Hierarchical Clustering Logistic Regression Grid Search Categorical Data K-means Bootstrap Aggregation Cross Validation AUC - ROC Curve K-nearest neighbors >My zig

Python MySQL

MySQL Get Started MySQL Create Database MySQL Create Table MySQL Insert MySQL Select MySQL Where MySQL Order By MySQL Delete MySQL Drop Table MySQL Update MySQL Limit MySQL Join

Python MongoDB

MongoDB Get Started MongoDB Create DB MongoDB Collection MongoDB Insert MongoDB Find MongoDB Query MongoDB Sort MongoDB Delete MongoDB Drop Collection MongoDB Update MongoDB Limit >My zig

Python Reference

Python Overview Python Built-in Functions Python String Methods Python List Methods Python Dictionary Methods Python Tuple Methods Python Set Methods Python File Methods Python Keywords Python Exceptions Python Glossary >My zig

Module Reference

Random Module Requests Module Statistics Module Math Module cMath Module >My zig

Python How To

Remove List Duplicates Reverse a String Add Two Numbers >My zig

Python Examples

Python Examples Python Compiler Python Exercises Python Quiz Python Server Python Syllabus Python Study Plan Python Interview Q&A Python Bootcamp >My zig

>My zig
>My zig
>My zig

Python - Change List Items


>My zig

Change Item Value

>My zig

To change the value of a specific item, refer to the index number:

>My zig

Example

Change the second item:

thislist = ["apple", "banana", "cherry"]
thislist[1] = "blackcurrant"
print(thislist)
Try it Yourself »
>My zig
>My zig

Change a Range of Item Values

>My zig

To change the value of items within a specific range, define a list with the new values, and refer to the range of index numbers where you want to insert the new values:

>My zig

Example

Change the values "banana" and "cherry" with the values "blackcurrant" and "watermelon":

thislist = ["apple", "banana", "cherry", "orange", "kiwi", "mango"]
thislist[1:3] = ["blackcurrant", "watermelon"]
print(thislist)
Try it Yourself »
>My zig

If you insert more items than you replace, the new items will be inserted where you specified, and the remaining items will move accordingly:

>My zig

Example

Change the second value by replacing it with two new values:

thislist = ["apple", "banana", "cherry"]
thislist[1:2] = ["blackcurrant", "watermelon"]
print(thislist)
Try it Yourself »
>My zig

Note: The length of the list will change when the number of items inserted does not match the number of items replaced.

>My zig

If you insert less items than you replace, the new items will be inserted where you specified, and the remaining items will move accordingly:

>My zig

Example

Change the second and third value by replacing it with one value:

thislist = ["apple", "banana", "cherry"]
thislist[1:3] = ["watermelon"]
print(thislist)
Try it Yourself »
>My zig
>My zig

Insert Items

>My zig

To insert a new list item, without replacing any of the existing values, we can use the insert() method.

>My zig

The insert() method inserts an item at the specified index:

>My zig

Example

Insert "watermelon" as the third item:

thislist = ["apple", "banana", "cherry"]
thislist.insert(2, "watermelon")
print(thislist)
Try it Yourself »
>My zig

Note: As a result of the example above, the list will now contain 4 items.

>My zig

>My zig >My zig
>My zig
>My zig
>My zig
>My zig >My zig
>My zig
>My zig
>My zig >My zig >My zig