gpt4 book ai didi

python - 用 pandas DataFrame 制作一个字符串

转载 作者:太空狗 更新时间:2023-10-30 01:18:01 26 4
gpt4 key购买 nike

我有 pandas DataFrame,它看起来像这样:

 Name  Number    Description
car 5 red

我需要用它制作一个字符串,如下所示:

"""Name: car

Number: 5

Description: red"""

我是初学者,我真的不知道我该怎么做?稍后我可能需要将其应用于一些类似的 DataFrame。

最佳答案

您可以使用 iterrows 遍历您的数据框行,然后您可以在每一行上获取列并按您想要的方式打印结果。例如:

import pandas as pd

dtf = pd.DataFrame({
"Name": ["car", "other"],
"Number": [5, 6],
"Description": ["red", "green"]
})

def stringify_dataframe(dtf):
text = ""
for i, row in dtf.iterrows():
for col in dtf.columns.values:
text += f"{col}: {row[col]}\n"
text += "\n"
return text

s = stringify_dataframe(dtf)

现在 s 包含以下内容:

>>> print(s)
Name: car
Number: 5
Description: red

Name: other
Number: 6
Description: green

关于python - 用 pandas DataFrame 制作一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55554228/

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