I try to read the file into pandas. The file has values separated by space, but with different number of spaces I tried:
pd.read_csv('file.csv', delimiter=' ')
but it doesn't work
add delim_whitespace=True argument, it's faster than regex.
delim_whitespace=True
1.4m articles
1.4m replys
5 comments
57.0k users