Title: Issue with read_csv
due to Low Space on C Drive
Description:
I am encountering a problem with the read_csv
function in Python. My C drive has low space, and I am using an SSD. The CSV file is available on both C and D drives, but the function still doesn’t work. How can I resolve this issue?
Import pandas as pd
Reading the CSV file
df = pd.read_csv(r"C:\Users\Waliullah\Desktop\webscraping\gporders.csv")
Displaying the first few rows of the dataframe
print(df.head())