for loop pandas range code example
Example: for loop pandas range
for i in range(5):
b = current_tracks.rel_values.iloc[i] # by standard 0-based sequence index
or
for i in range(1, 6):
b = current_tracks.rel_values.loc[i] # by 1-based track number