Python在一定长度后剪切列表中的单词

时间:2016-10-06 07:28:27

标签: character limit words

我在csv文件记录中有一个条目列表。我想将元素的长度限制为50个字符并将其保存到列表中。我的方法不起作用。

def readfile():
    records = []
    with open(fpath, 'r') as csvfile:
        csvreader = csv.reader(csvfile, delimiter='|')
        for row in csvreader:
            if len(row) == 0:
                continue
            records.append([row[1]] + [x.strip() for x in row[3]])
    return records

def cut_words(records):
    for lines in records:
        for word in lines:
            word = word[0:50]
    return records

它似乎没有保存在列表中....谢谢

0 个答案:

没有答案