functions Flashcards
1
Q
special method of callable instances
A
__call__()
2
Q
sort function
A
sorted(iterable, key=None, reverse=False)
3
Q
built-in function which detects a callable object
A
callable()
4
Q
built-in function which turn several lists into the list of tuples
A
zip()
5
Q
transpose the list of lists
A
list(zip(*iterable))