gpt4 book ai didi

python - 使用 python 将新列 append 到列表中的 df

转载 作者:行者123 更新时间:2023-11-28 22:35:48 24 4
gpt4 key购买 nike

我有列表 lst = ['vk.com', 'facebook.com', 'avito.ru', 'twitter.com']我想将它添加到此 df:

date    id  request
2016-06-17 09:26:18 yans.bouts@yandex.ru GET HTTP/1.1
2016-06-17 09:38:18 yans.bouts@yandex.ru GET HTTP/1.1
2016-06-17 10:13:44 yans.bouts@yandex.ru GET HTTP/1.1
2016-06-17 10:19:24 yans.bouts@yandex.ru GET HTTP/1.1

我尝试了 df.append,但它不起作用。

最佳答案

如果列表的lengthdf的长度相同,使用:

lst = ['vk.com', 'facebook.com', 'avito.ru', 'twitter.com']
df['new'] = lst

print (df)
date id request new
0 2016-06-17 09:26:18 yans.bouts@yandex.ru GET HTTP/1.1 vk.com
1 2016-06-17 09:38:18 yans.bouts@yandex.ru GET HTTP/1.1 facebook.com
2 2016-06-17 10:13:44 yans.bouts@yandex.ru GET HTTP/1.1 avito.ru
3 2016-06-17 10:19:24 yans.bouts@yandex.ru GET HTTP/1.1 twitter.com

关于python - 使用 python 将新列 append 到列表中的 df,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37992118/

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