Polynomials

  • + 0 comments

    import numpy

    P = list(map(float, input().split())) x = float(input())

    print(numpy.polyval(P,x))