📜  pandas 循环遍历行 - Python 代码示例

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

代码示例5
>>> 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