python-3.x 在使用中使用iteritems()时出现FutureWarning,iloc()pandas

jjjwad0x  于 2022-11-19  发布在  Python
关注(0)|答案(1)|浏览(1725)

当我在使用.iloc中使用s.iteritems()时,看到以下警告:

FutureWarning: iteritems is deprecated and will be removed in a future version. Use .items instead. for item in s.iteritems()

当我使用此函数时:

temp3 = temp2.iloc[:, 0]

我正在使用python 3.8,不知道为什么会收到这个警告。
我还尝试了以下方法:

temp3 = temp2.iloc[:, 0].copy()
temp3 = temp2.loc[:, 0].copy()
temp3 = temp2[0].copy()

但都一样。

s8vozzvw

s8vozzvw1#

顺便说一句,我解决了我的问题与

temp3 = temp2[0].values

但我不知道为什么我会收到这个警告

相关问题