- Rewrite the following function to improve the style: def longwinded(a, b, c): if a > b: if a > c: return True else: return False else: return False - What does the following function do (in one sentence) assuming x is a list: def mystery(x): if len(x) <= 1: return True else: if x[0] > x[1]: return False else: return mystery(x[1:]) - Write a function that takes two parameters: a dictionary and a number. The function should add the number to each value in the dictionary. - Write a function that takes a string as a parameter and returns the string with all the uppercase letters removed. Hint, the isupper method may be useful. - Write a recursive function all_upper that takes a list of strings as a parameter and returns a list of booleans, True for strings in the list that are all uppercase, False otherwise. Recall that the string class has an "isupper()" method that checks if it is all uppercase.