gpt4 book ai didi

python - Pandas iterrows 获取行字符串作为列表

转载 作者:太空宇宙 更新时间:2023-11-04 09:52:15 24 4
gpt4 key购买 nike

我在 pandas 中有一个 df,它看起来像:

id  name  values

1 a cat dog
2 b bird fly

我目前在做:

for index, row in df.iterrows():
print row["values"]

但是,这会打印整个单元格:"cat dog""bird fly"

我尝试过:

print row["values"][0] 

而是打印单个字符,因此 "c""b"

我怎样才能得到像 ["cat", "dog"]["bird", "fly"] 这样的东西?

最佳答案

像这样:

for index, row in df.iterrows():
print(row["values"].split())

输出:

['cat', 'dog']
['bird', 'fly']

关于python - Pandas iterrows 获取行字符串作为列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47317617/

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