↻
⏵︎ Run
import pandas as pd df = pd.DataFrame( [['abc', 22], ['xyz', 25], ['pqr', 31]], columns=['name', 'age']) df.info()
Output