Question: phython problem, please help me with the indent too i have difficulty with the indent Write a function called general_poly, that meets the specifications below.
phython problem, please help me with the indent too i have difficulty with the indent

Write a function called general_poly, that meets the specifications below. For example, general_poly([1, 2, 3, 4]) (10) should evaluate to 1234 because 1 10^3 + 2 10^2 +3 10^1 + 4 10^0. def general_poly (L): " " "L a list of numbers (n0, n1, n2, .. nk) Returns a function, which when applied to a value x, returns the value n0 x^k + n1 x^(k-1) + .. nk x^0 " " " #YOUR CODE HERE Paste your function here If you are getting "exceptlon thrown", you should read the specification CAREFULLY for what you need to return
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
