The correct answer is:
age_survey: <class 'list'>
When you run the type() command on a list, what will be the result?
For example, running the following code will give you what result?
age_survey = [12, 14, 12, 29, 12, 14, 12, 12, 13, 12, 14, 13, 13, 46, 13, 12, 12, 13, 13, 12, 12]
# display type information
print("age_survey: ", type(age_survey))
Group of answer choices
age_survey: <class ‘float'>
age_survey: <class 'list'>
age_survey: <class ‘array'>
age_survey: <class ‘int'
1 answer