InterviewSolution
Saved Bookmarks
| 1. |
Which of the following statement will import pandas?(a) import pandas as pd(b) import panda as py(c) import pandaspy as pd(d) all of the mentionedThis question was posed to me in a job interview.This question is from Pandas in section Data Analysis with Python of Data Science |
|
Answer» CORRECT choice is (a) import pandas as pd Best explanation: You can read data from a CSV FILE using the read_csv FUNCTION. |
|