1. Write a function called capital_count that takes as input a filename and counts how many of the lines start with a capital letter. 2. Write a function called dict_value_count that takes as input a dictionary and a value and counts how many times that value occurs as a *value* in the dictionary. 3. Declare a new dictionary that has the counts of the letters in your first name. Specifically, the key should be a string representing a single letter and the value should be the number of times that letter occurs in your first name. This should be a single statement.