My task X#

%%time
from nbproject import header

header()
idPtR0F95FzAvw
version1
time_init2023-04-16 04:54
time_run2023-04-16 04:56
consecutive_cellsTrue
pypackagenbproject==0.8.4 pandas==2.0.0 pydantic==1.10.7
CPU times: user 703 ms, sys: 60 ms, total: 763 ms
Wall time: 762 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