bhaiyya i am having some problem in read_csv command. Can u plz tell the path we have to give inside read_csv
What path to give iinside read_csv
hey @surbhi11 ,
read_csv function takes parameter as the path to the csv file that you need to read.
For example ,
if your file is located in the same folder ,then you can directly just paste the name of the file
like pd.read_csv("file.csv")
But if your file is located in some other folder , then you need to do it like
pd.read_csv("C:\\users\\name\\file.csv")
( complete path )
in this you can also put relative path too , if that is correct.
I hope this helps you .