import numpy as np zy = np.genfromtxt('Zuoye.csv',delimiter=',',dtype=float) a=zy[0,...] b=zy[1,...] c=zy[2,...] d=zy[3,...] e=zy[4,...] result = np.round(np.add(np.multiply(np.add(a,b),np.power(np.reciprocal(c),d)),np.negative(e)),2) print(result)