My task X

%%time
from nbproject import header

header()
ideVt3OqaV0w8e
version0
time_init2024-10-16 15:53
time_run2024-10-16 15:54
pypackagenbproject==0.10.4 pandas==2.2.3 pydantic==2.9.2
CPU times: user 467 ms, sys: 48 ms, total: 515 ms
Wall time: 515 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