Using python
def partial_Sums(list):
”””
Returnsa list containing the partial sums of all the elements of lst,which is a list of
numbers.
Example:if lst= [2,4,6] then [2,6,12] is returned
Write a function call from _main_ to call function partial_Sumsto generate a list of partial sums of [ 32,305,51,63] thenstore the resulting list in a global variable. Then printthat variable. The function partialSumsList is given,do not write its definition.
Expert Answer
Answer to Using python def partial_Sums(list): ””” Returns a list containing the partial sums of all the elements of lst, wh…