I’ve imported a txt file using read_csv and I need to separate it by multiple parameters. So far all I’ve done is:
‘’’
df = pd.read_csv(file name, header=None, sep = ‘\n’)
However along with separating it at the new lines I also need to separate by both a comma and an underscore. How could I do this?