Python List functions Flashcards

1
Q

What are the list functions that I studied ?

A

list.count() - counts the number times a value is repeated in a list
max(list) - Max value in a list
min(list) - Min value in a list
list.reverse() - reverses a list
list.index() - find the index of a value
list.remove() - removes a value from a list
list.append() - adds a value to a list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly