gpt4 book ai didi

python - 从 python 中的数据框中创建两列的 python 对列表

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

我有 pandas 数据框

df_1 = pd.DataFrame({'x' : [a, b, c, d], 'y' : [e, f, g, h]})

我需要从这样的字符串中获取:

(first_element_from_first_row,first_element_from_second_row),
(second_element_from_first_row,second_element_from_second_row),
................................................................
(last_element_from_first_row,last_element_from_second_row);

最后应该是分号。

就我而言,答案应该是:

(a,e),(b,f),(c,g),(d,h);

我应该如何解决我的问题?

最佳答案

如果我正确理解了这个问题 - 您想要应用以下转换:

您可以使用 zip 作为元素元组同时迭代列“x”和列“y”的每个元素。您可以连接这些元素,使它们成为一个字符串,并将其括在括号中以获得所需的按行输出。然后,将所有这些存储在一个更大的列表中,并将该更大的列表转换为以逗号分隔的字符串,并在末尾添加分号。

all_pairs = []

for pair in zip(df_1["x"], df_1["y"]):
pair_str = "({})".format(",".join(pair))
all_pairs.append(pair_str)

final_str = ",".join(all_pairs) + ";"

print(final_str)
'(a,e),(b,f),(c,g),(d,h);'

关于python - 从 python 中的数据框中创建两列的 python 对列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65634684/

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