python:实现多项式求和 以下是一个简单的Python多项式求和程序: def poly_sum(coef, x): # 获取多项式的最高次数 n = len(coef) - 1 # 存储每项的值 terms = []