My task X

%%time
from nbproject import header

header()
idxa0yp58teEfG
version0
time_init2025-04-18 12:46
time_run2025-04-18 12:47
pypackagenbproject==0.10.6 pandas==2.2.3 pydantic==2.11.3
CPU times: user 523 ms, sys: 30.9 ms, total: 554 ms
Wall time: 553 ms
import pandas as pd
import pydantic
df = pd.DataFrame({"a": [1, 2, 3], "b": [2, 3, 4]})
df
a b
0 1 2
1 2 3
2 3 4
df.mean()
a    2.0
b    3.0
dtype: float64