I'm newly learning and practicing python. My question is, how can find the period of the signal through the python? And in which different ways?
"A periodic signal (but only ploted on a bounded interval)"
signal1=np.exp(np.sin(20*np.pi*t)*np.sin(30*np.pi*t))
fig, ax=plt.subplots()
ax.plot(t,signal1);```