Salut,
Nouveau en Python, je n'arrive pas a implémenter le if W<0 : W = 0
Ou, compilateur en ligne : http://tpcg.io/_L4NWFACode:import matplotlib.pyplot as plt import numpy as np # def T_cos(jj): W = (np.cos(np.pi* jj/(365/2))) # if W < 0 : W = 0 # comment implémenter ceci ? return (W) # j = np.arange(1, 366, 1) plt.plot(T_cos(j)) plt.show() #
Biname
-----