Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
Home
Python
2D
Application
Buildin Function
Class
Data Structure
Data Type
Database
Development
Dictionary
Event
Exception
File
Function
GUI Pmw
GUI Tk
Language Basics
List
Math
Network
String
System
Thread
Tuple
Utility
XML
List value assignment and index reference : List Indexing « List « Python
Python
List
List Indexing
List value assignment and index reference
L1 = [2,3,4] L2 = L1 L1[0] = 24 print L2
Related examples in the same category
1.
List offset: start at zero, negative and slicing
2.
Negative List Indices
3.
Change individual elements of a list
4.
Reference index in a list in Python.
5.
Searching a list for an integer.
6.
List: display one item through an index