Polynomials

  • + 0 comments

    import numpy as np

    i = np.array(list(map(float,input().split(' ')))) x = int(input()) print(np.polyval(i,x))