Polynomials

  • + 0 comments

    import numpy as np A = np.array(list(map(float,input().split()))) B=int(input()) print(np.polyval(A, B))