Zusammenfassung der Ressource
Lists
- Accessing
Elements in a
List
- Examples
- Lists are
Mutable
- Examples
- List Operations
- Concatenation
- + is used to
merge lists
- Examples
- Repetition
- * is used
for
replication
- Examples
- Membership
- In and Not in
- Examples
- Slicing
- Extraction of list
- Example
- Traversing a
List
- List Traversal
Using for &
while Loop:
- Examples
- Built-in
Functions
- len()
- list()
- append()
- extend()
- insert()
- count()
- index()
- remove()
- pop()
- reverse()
- sort()
- sorted()
- min()
- min ()
- sum ()
- Examples
- Nested Lists
- Examples
- Copying Lists
- Exaples
- List as Argument
to a Function
- Examples
- List
Manipulation
- Exaples