Polynomials

  • + 0 comments
    import numpy
    p = list(map(float, input().split()))
    x = int(input())
    print(numpy.polyval(p,x))