The simplest data structure in Python and is used to store a list of values.
Lists are collections of items (strings, integers, or even other lists).
Each item in the list has an assigned index value.
Lists are enclosed in [ ]
Each item in a list is separated by a comma
Unlike strings, lists are mutable, which means they can be changed.
Examples:
emptyList = [ ]
list1 = ['one, two, three, four, five']
numlist = [1, 3, 5, 7, 9]
mixlist = ['yellow', 'red', 'blue', 'green', 'black']
An empty list is created using just square brackets:
list = []
Method |
Description |
Add Single Element to The List |
|
Add Elements of a List to Another List |
|
Inserts Element to The List |
|
Removes Element from the List |
|
returns smallest index of element in list |
|
returns occurrences of element in a list |
|
Removes Element at Given Index |
|
Reverses a List |
|
sorts elements of a list |
|
Returns Shallow Copy of a List |
|
Removes all Items from the List |
|
Checks if any Element of an Iterable is True |
|
returns true when all elements in iterable is true |
|
Returns String Containing Printable Representation |
|
Converts a Value to Boolean |
|
Returns an Enumerate Object |
|
constructs iterator from elements which are true |
|
returns iterator for an object |
|
creates list in Python |
|
Returns Length of an Object |
|
returns largest element |
|
returns smallest element |
|
Applies Function and Returns a List |
|
returns reversed iterator of a sequence |
|
creates a slice object specified by range() |
|
returns sorted list from a given iterable |
|
Add items of an Iterable |
|
Returns an Iterator of Tuples |
To learn more about python Connect with TCCI , AhmedabadTCCI provides online coaching for Python.
To know more about Computer Course at TCCI, Engineering Course at TCCI
Call us @ 98256 18292.
Visit us @ http://tccicomputercoaching.com/
No comments:
Post a Comment