Test yourself under real exam conditions: 50 timed questions, 60 on the clock, pass mark 70%%. Instant score with a full review of everything you got wrong. Free — no account needed.
Exam details
A two-dimensional, size-mutable, tabular data structure with labeled axes (rows and columns), similar to a spreadsheet or SQL table.
Pandas (import pandas as pd).
pd.DataFrame({'col1': [1, 2], 'col2': [3, 4]})
pd.DataFrame([{'a': 1}, {'a': 2, 'b': 3}]); missing keys become NaN.
pd.read_csv('file.csv').