从 csv 文件创建元组列表

2022-01-20 00:00:00 python list csv tuples

问题描述

我是 python 初学者,努力在 python 中创建和保存包含来自 csv 文件的元组的列表.

I am python beginner struggling to create and save a list containing tuples from csv file in python.

我现在得到的代码是:

def load_file(filename):
    fp = open(filename, 'Ur')
    data_list = []
    for line in fp:
        data_list.append(line.strip().split(','))
    fp.close()
    return data_list

然后我想保存文件

def save_file(filename, data_list):
    fp = open(filename, 'w')
    for line in data_list:
        fp.write(','.join(line) + '
')
    fp.close()

不幸的是,我的代码返回的是列表列表,而不是元组列表...有没有办法在不使用 csv 模块的情况下创建一个包含多个元组的列表?

Unfortunately, my code returns a list of lists, not a list of tuples... Is there a way to create one list containing multiple tuples without using csv module?


解决方案

split 返回一个列表,如果你想要一个元组,把它转换成一个元组:

split returns a list, if you want a tuple, convert it to a tuple:

    data_list.append(tuple(line.strip().split(',')))

请使用 csv 模块.

相关文章