2. What all libraries do you require in order to bring data from a CSV file into a dataframe ?
3. You want to read data from a CSV file in a dataframe but you want to provide your own column names to dataframe. What additional argument would you specify in read_csv() ?

Ans 2: We mainly use ‘panda’ library  to being data from a CSV file into dataframe.

Ans 3: df = pd.read_csv( ” File Path”, names = [ Sequence of coloumns ]

error: Content is protected !!