use python and go step by step please and thank you!!!!
1. Write the recursive function multiply \( (x, y) \) which accepts two positive non-zero integer arguments into the parameters \( x \) and \( y \). The function should return the values of \( x \) times \( y \). Remember, multiplication can be performed as repeated addition as follows: \[ 7 \times 4=4+4+4+4+4+4+4 \] Write an interactive script which tests multiply using variables first and second. Print the result of calling the function to the screen. (The function does no input) 2. Write the recursive function allSum(numList, start) that uses recursion to calculate the sum of all the integers in a list of integers and return the resulting sum. The function accepts the list of integers as numList and the starting index from where to begin as start (The initial starting index will be 0). Write a script which tests allSum using the following list: \[ \text { numbers }=[1,3,5,7,9,2,4,6,8] \] Print the result of calling the function to the screen. (The function does no input) 3. Write the recursive function integersum(value) that accepts an integer as value and returns the sum of all the integers from 1 up to the number passed as an argument using recursion to calculate the sum. For example, if 50 is passed as a argument, the function will return the sum of \( 1,2,3,4, \ldots 50 \). Write an interactive script which tests integersum using variable num \( X \). Print the result of calling the function to the screen. (The function does no input)