652 B
652 B
id, title, challengeType, isHidden, videoId
id | title | challengeType | isHidden | videoId |
---|---|---|---|---|
5e9a093a74c4063ca6f7c162 | Reading Data CSV and TXT | 11 | true | ViGEv0zOzUk |
Description
Tests
question:
text: 'How would you import the CSV file "data.csv" and store it in a DataFrame using the Pandas module?'
answers:
- '<pre>import pandas as pd<br>df = pd.csv("data.csv")</pre>'
- '<pre>import pandas as pd<br>df = pd.read_csv("data.csv")</pre>'
- '<pre>import pandas as pd<br>pd.read_csv("data.csv")</pre>'
- '<pre>import pandas as pd<br>df = pd.csv_reader("data.csv")</pre>'
solution: 2