Polynomials

  • + 0 comments

    import numpy p=list(map(float,input().split())) x=int(input()) arr=numpy.array(p) print(numpy.polyval(arr,x))