""" For this part of the problem set you will be generating your own functions to achieve a specific goal. """ """ Create a function print_x_times which will print a first argument second argument number of times. Do not concatenate or extend the string, you should call print second argument number of times. """ """ Create a function product_range which takes in two integers and returns the product of all the integers between the first argument and second argument (not including the second argument). e.g. product_range(2,5) = 2 * 3 * 4. """ """ Create a function ask_rating that will continuously ask the user to input a number between 1-10 until it is valid. Assume the user will always enter a number. """ """ Create a function algorithm that will add the number of numbers between the first and second argument that is divisible by 2 or by 3. Numbers divisible by both count as 2. """