Question Answered step-by-step Write a function called all_smaller(x, values), which returns True…Write a function called all_smaller(x, values), which returns True only if every element of the list of integers values is smaller than the parameter x. Otherwise, False is returned. Example: all_smaller(10, []) returns true, and all_smaller(1, [0, 5]) returns false. Your code will be graded against six test cases, including the two examples mentioned above. You will receive partial credit for each test case you pass.Computer Science Engineering & Technology Python Programming Aj 012