'read_csv stops at 100000

I am trying to import a .csv file from my Downloads folder. Usually, the read_csv function will import the entire rows, though there are millions of rows. In this case, my file has 236,905 rows, but exactly 100,000 are loaded.

df = pd.read_csv(r'C:\Users\user\Downloads\df.csv',nrows=9999999,low_memory=False)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source