Advertisements
Advertisements
Question
Which of the following Python statements is used to import data from a CSV file into a Pandas DataFrame (Note: pd is an alias for pandas)?
Options
pd.open_csv('filename.csv')
pd.read_csv('filename.csv')
pd.load_csv('filename.csv')
pd.import_csv('filename.csv')
MCQ
Solution
pd.read_csv('filename.csv')
Explanation:
To import data from a CSV file into a DataFrame, use Pandas' pd.read_csv() function. read_csv() converts the contents of a CSV file to a tabular format, making it simple to analyze and manipulate the data with Pandas.
shaalaa.com
Is there an error in this question or solution?