I am reading data from a text file and then I do a sort of random walk among the rows. How would you mark a row as "read"?
This is how I'm reading the data:
import pandas as pd
set = pd.read_csv('file.txt', sep=" ", header = None)
set.columns = ["A", "B", "C", "D", "E", "F", "G"]`