gpt4 book ai didi

python - 尝试将一列中的数据从字符串转换为整数

转载 作者:行者123 更新时间:2023-12-01 07:52:03 24 4
gpt4 key购买 nike

我有一个名为 df['code'] 的数据框看起来像这样。

0          1
1 2
2 3
3 6
4 9
5 12
6 15

其中第一列是索引,第二列是我想要转换为整数的列。

我尝试做的是:
for i in range(len(df['code'])):
df['code'][i] = int(df['code'][i])

这不起作用。有任何想法吗?谢谢

最佳答案

我认为做到这一点的一种方法是:

for i in range(len(df['code'])):
df['code'].iloc[i] = int(df['code'].iloc[i] )

它不使用索引本身,而是使用索引位置。

关于python - 尝试将一列中的数据从字符串转换为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56159638/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com