📜  df iterrows pandas - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:12.938000             🧑  作者: Mango

代码示例3
>>> df = pd.DataFrame([[1, 1.5]], columns=['int', 'float'])
>>> row = next(df.iterrows())[1]
>>> row
int      1.0
float    1.5
Name: 0, dtype: float64
>>> print(row['int'].dtype)
float64
>>> print(df['int'].dtype)
int64