Polynomials

  • + 0 comments

    import numpy as np

    p = list(map(float, input().split())) x= float(input()) print(np.polyval(p,x))