我有表格格式的数据,想转换成元组格式

时间:2018-08-27 06:20:51

标签: python pandas csv tuples

我有一个csv文件,如下图所示...

enter image description here

我想用以下格式在python中转换整个文件。

enter image description here

2 个答案:

答案 0 :(得分:1)

您可以在读取CSV文件正确的文件路径后尝试执行此操作。

import pandas as pd
df = pd.read_csv("path/to/file", names=["Sentence", "Value"])
result = [(row["Sentence"], row["Value"]) for index, row in df.iterrows()]
print(result)

答案 1 :(得分:0)

使用数据帧的apply()方法仅一行

df.apply(lambda x: x.tolist(), axis=1)

OR

df.values.tolist()也将起作用