True or false a List index values must be integers b Lists c
True or false?
a. List index values must be integers.
b. Lists can change their size, getting larger or smaller.
c. A function cannot return a list.
d. All elements of a list are of the same type.
e. Lists cannot contain strings as elements.
f. A function cannot change the length of a list argument.
Solution
Below are True statements
a. List index values must be integers.
b. Lists can change their size, getting larger or smaller.
f. A function cannot change the length of a list argument.
Below are False statements
A function cannot return a list.
All elements of a list are of the same type.
e. Lists cannot contain strings as elements.
