gpt4 book ai didi

python - 如何在 df 中解压缩列表并在该列表上使用加法而不进行循环

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

我想从列表中向我的 df 添加一列,然后从该列的 df 的每一行中添加或减去数字。

list_of_num  = [1,2,3,4,5]
a_variable = 4

df["New_num"] = list_of_num + a_variable

期望的输出

New_num
5
6
7
8
9

我收到错误 TypeError: unsupported operand type(s) for -: 'list' and 'int'

最佳答案

试试这个。

df["New_num"] = [num + a_variable for num in list_of_num]

关于python - 如何在 df 中解压缩列表并在该列表上使用加法而不进行循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64578577/

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