""" CSE 163 Suh Young Choi Lesson 6: Shakiness by Location Write a function `shakiness_by_location` that takes the earthquakes `data` in the list of dictionaries format and returns a `dict` that stores the "shakiness" of each location. The **shakiness** of a location is defined as the sum of all earthquake magnitudes at that location. If there are no earthquakes in the dataset, it should return an empty `dict`. """ import cse163_utils from cse163_utils import Earthquake # Write your function here! def main(): data = cse163_utils.parse('earthquakes.csv') print(shakiness_by_location(data)) if __name__ == '__main__': main()