List methods Flashcards
append()
add single element to the list
extend()
add elements of a list to another list
insert()
inserts element to the list
remove()
removes element from the list
index()
returns smallest index of element in list
count()
returns occurrences of element in a list
pop()
removes element at given index
reverse()
reverses a list
sort()
sorts elements of a list
copy()
returns shallow copy of a list
clear()
removes all items from the list
any()
checks if any element of an iterable is true
all()
returns true when all elements in iterable is true
ascii()
returns string containing printable representation
bool()
converts a value to boolean
enumerate
returns an enumerate object
filter()
constructs iterator from elements which are true
iter()
returns iterator for an object
list() function
creates list in python
len()
returns length of an object
max()
returns largest element
min()
returns smallest element
map()
applies function and returns a list
reversed()
returns reversed iterator of a sequence
slice()
creates a slice object specified by range()
sorted()
returns sorted list from a given iterable
sum()
add items of an iterable
zip()
returns an iterator of tuples