What does .read_csv function do and can we only pass .csv files to it?
.read_csv in pandas
hey @Naman_Mehra ,
It is a pandas function that used to read .csv (comma seperated values) file directly as a dataframe.
Not its not that you can only read csv file , you can also read text files , but then you need to specify what delimiter/seperator is being used in that file , so that it can correctly parsed into a dataframe /table.
i hope this would have helped you to understand it.
Thank You. .