Q. WAP to read data from a CSV file where separator character is "@". Make sure that the top row is used as data, not as column headers.
Answer :-
import pandas as pd df = pd. read_csv ('read.csv', sep='@', header = None) print (df)
Answer :-
import pandas as pd df = pd. read_csv ('read.csv', sep='@', header = None) print (df)
Post a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )