Define a function called all_above(), which takes a sequence of numbers and an optional minimum value, and determines if every number in the sequence is larger than the given minimum value. If the minimum value is left out, it should default to 0.So for example, all_above( [1, 2.72, 3.14, 1.41], 1.2), all_above( (-2, -1, 0, 1, 2) ), and all_above( [5, 10, 15], 5 ) should all return False, but all_above( (1, 2.72, 3.14, 1.41), 0.5) and all_above( [5, 10, 15] )should both return True.