Write a python program to read the file, and produce a summary of the total reported crimes for each state.

Need help with the below:Write a python program to read the file, and produce a summary of the total reported crimes for each state. The report will look something like this, though don’t worry if your list is not in alphabetical order:There are a lot of fields in the data file, but you can simplify your life by using subtotal fields, Totals.Property.All and Totals.Violent.All.Once you have the summary, change your program so it writes the summary to a file, crime_summary.txt.Make sure you use a dictionary for this assignment. The obvious case is to use a key of state names and the value is the accumulated count of reported crimes. There might be a place for another dictionary as well, though you only need to use one.Be sure to add a header comment to your program and any functions, and appropriate comments before other blocks of code.

× How can I help you?