pandas read a txt file in collumns code example
Example 1: read txt file pandas
df = pd.read_csv('output_list.txt', sep=" ", header=None, names=["a", "b", "c"])
Example 2: read txt in pandas
data = pd.read_csv('output_list.txt', sep=" ", header=None)
data.columns = ["a", "b", "c", "etc."]