Edhesive 9.3
Question 1
The _____________ is the address of a piece of data.
Question 2
A(n) ___________ is an individual piece of data in an array.
For Questions 3-5, consider the following code:
stuff = []
stuff.append("emu")
stuff.append("frog")
stuff.append("iguana")
print (stuff)
What data type are the elements in stuff?
Question 4
What data type are the indexes in stuff?
Question 5
What is output by:
print (len (stuff))
3
Question 6
Consider the following code:
price = [12.99, 10.00, 2.50, 1.99]
This code is an example of a(n) ______________ _____________.
initializer list
output list
index list
parameter list
