So I have a csv data and I want my program to read the data every 5 seconds. So between the first data and the second data there is a reading distance of 5 seconds.
Can I use time.sleep() or is there another way to do it?
data_signal = np.loadtxt(pname + fname,
delimiter=';',
skiprows=1)
for i in range(len(data_signal)
data = data_signal[i]
time.sleep(5)