To get the number of items in a list, we use the ___ function.
list()
len()
int()
size()
11 answers
len()
To add items to a list, you can use ___.
list.add()
list.put()
list.in()
list.append()
list.add()
list.put()
list.in()
list.append()
list.append()
In Python, you generally use a list to hold ___ items.
zero
single
multiple
two
zero
single
multiple
two
multiple
A list is known as a ___ structure.
code
data
list
storage
code
data
list
storage
data
The ___ operator let's you test if an item is contained in a list.
list
==
in
=
list
==
in
=
in
___ are special functions that allow you to manipulate a list through dot notation.
Functions
Data
Methods
Structures
Functions
Data
Methods
Structures
Methods