List Flashcards

1
Q

Adds an element at the end of the list

A

append()

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

Removes all the elements from the list

A

clear()

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

Returns a copy of the list

A

copy()

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

Returns the number of elements with the specified value

A

count()

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

Add the elements of a list (or any iterable), to the end of the current list

A

extend()

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

Returns the index of the first element with the specified value

A

index()

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

Adds an element at the specified position

A

insert()

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

Removes the element at the specified position

A

pop()

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

Removes the first item with the specified value

A

remove()

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

Reverses the order of the list

A

reverse()

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

Sorts the list

A

sort()

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