当我在使用.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()
但都一样。
1条答案
按热度按时间s8vozzvw1#
顺便说一句,我解决了我的问题与
但我不知道为什么我会收到这个警告