Python List Methods Flashcards

1
Q

Adds an element at the end of the list.

A

append()

list = [1, 2, 3]
list.append(4)

# Output
[1, 2, 3, 4]
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()

list = [1, 2, 3]
list.clear()

# Output
[]
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()

list = [1, 2, 3]

copied_list = list.copy()

# Output
[1, 2, 3]
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

Output

count()

~~~
list = [1, 2, 3, 3]

total_count = list.count(3)

2

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