问题 I have next first order differential equation (example): dn/dt=A*n; n(0)=28 When A is constant, it is perfectly solved with python odeint. But i have an array of different values of A from .txt file [not function,just an array of values] A = [0.1,0.2,0.3,-0.4,0.7,...,0.0028] And i want that in each iteration (or in each moment of time t ) of solving ode A is a new value from array. I mean that: First iteration (or t=0) - A=0.1 Second iteration (or t=1) - A=0.2 and etc from array. How can i do