I\'m reading a basic csv file where the columns are separated by commas with these column names:
userid, username, body
However, the body column
Add usecols and lineterminator to your read_csv() function, which, n is the len of your columns.
In my case:
n = 5 #define yours df = pd.read_csv(file, usecols=range(n), lineterminator='\n', header=None)