In this lab you will be manipulating data that is coming from csv (comma separated values) files
load(filename)The docstring for load(filename) says:
“““load the CSV file by name, return list of dictionaries, each dictionary describes one row of the file”“”
You have a few calls to load(filename) in weather_tester.py:
test_file_list[0] return?test_file_list[0]["Max_Temperature"] return?load(filename)test_file_list[0] return? The following dictionary:{ "Max_Temperature" : 6.0,
"Min_Temperature" : -9.0,
"Precipitation" : "T",
"Snow" : "T",
"Snow_Depth" : 9.0 }
test_file_list[0]["Max_Temperature"] return? 6.0What does the following code print?
What does the following code print?
What does the following code print?
"2010-01-01"
What does the following code print?
"2"