My task Y#

%%time
from nbproject import header

header()
idRsTp3QoTb68g
version1
time_init2022-07-18 15:22
time_run2023-05-30 10:48
consecutive_cellsTrue
pypackagenbproject==0.8.6 pandas==2.0.2
CPU times: user 457 ms, sys: 52.1 ms, total: 509 ms
Wall time: 508 ms
import pandas as pd
df = pd.DataFrame({"a": [1, 2, 3], "b": [2, 3, 4]})
df
a b
0 1 2
1 2 3
2 3 4
df.min()
a    1
b    2
dtype: int64