gpt4 book ai didi

python-3.x - 在python中将数据帧行转换为没有列索引的值字符串

转载 作者:行者123 更新时间:2023-12-03 23:21:18 26 4
gpt4 key购买 nike

我有一个数据框行,想把它作为一个只有值的字符串,没有列。

col1 | col2 | col3
-----------------
1 | 2 | 3
x | y | z

我希望能够只选择一行并将其作为一个字符串:
'1','2','3'

但是我一直在那里得到列名,或者很多其他的值,比如:
"['1' '2'\n '3']"

最佳答案

只是使用

df.iloc[1,:].to_string(header=False, index=False)
  • header = False --> 不要在输出字符串中包含列名
  • index = False --> 不要在输出字符串中包含行索引
  • 关于python-3.x - 在python中将数据帧行转换为没有列索引的值字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55034158/

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