lists Flashcards

1
Q

function to add something to a list

A

variable.append(“ice cream”)

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

function to remove something from a list

A

variable.remove(“hotdog”)

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

remove last item from list

A

variable.pop()

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

add something into a list in a given position

A

food.insert(0, “cake”)

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

sort list alphabetically or numerically

A

variable.sort()

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

clear list

A

variable.clear()

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