答案 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()
也将起作用