我有以下DataFrame:
客户item1 item2 item3 1个苹果牛奶番茄 2水橙土豆 3汁芒果片
我想将其翻译为每行词典列表
rows = [{'customer': 1, 'item1': 'apple', 'item2': 'milk', 'item3': 'tomato'},
{'customer': 2, 'item1': 'water', 'item2': 'orange', 'item3': 'potato'},
{'customer': 3, 'item1': 'juice', 'item2': 'mango', 'item3': 'chips'}]
2
欢迎使用Stack Overflow!我将您的代码示例缩进了4个空格,以便正确呈现-请参阅编辑帮助以获取有关格式的更多信息。
—
ByteHamster 2015年