odepack.error: Extra arguments must be in a tuple
问题 I'm having some issues with my ode solver, I am trying to solve an SEIR problem and I keep getting the same errors dispite the code that i have based my code on being very similar. My code is: import numpy as np from scipy.integrate import odeint import matplotlib.pyplot as plt # Total population, N. N1 = 55600 # Initial number of infected and recovered individuals, I0 and R0. I10, R10, E10 = 1, 0, 0 # Everyone else, S0, is susceptible to infection initially. S10 = N1 - I10 - R10 - E10 #