Chemistry, asked by naricassa2772, 11 months ago

You are given the coefficients of a polynomial . Your task is to find the value of at point .

Answers

Answered by shanawaz44
0
Bf or cir ci5vd fi4 cj5 fo
Answered by gmadhur777
3

Answer:

import numpy

k = numpy.array(map(float,input().split()))

p = input()

print(numpy.polyval(k,p))

Explanation:

Similar questions