创建记录表(数组)

时间:2014-03-14 00:39:04

标签: python arrays function loops

如果我想将两个文件中的记录存储到一个表(记录数组)中,我可以使用类似于下面代码的格式,只需将两个文件名放在def函数中,如def readTable(log1,log2) :然后对log1和log2使用相同的代码,允许它创建table1和table2?

def readTable(fileName):
    s = Scanner(fileName)
    table = []
    record = readRecord(s)
    while (record != ""):
        table.append(record)
        record = readRecord(s)
    s.close()            
    return table

2 个答案:

答案 0 :(得分:1)

只需使用* args,并获取记录列表?

def readTable(*args):
    tables = []
    for filename in args:
        s = Scanner(fileName)
        table = []
        record = readRecord(s)
        while (record != ""):
            table.append(record)
            record = readRecord(s)
        s.close()
        tables.append(table)
    return tables

这样,您可以传递log1,log2,log3(您喜欢的任意数量的日志,并获取每个表的列表

答案 1 :(得分:0)

由于readTable返回列表,如果要连接2个日志中的记录,请使用+运算符。

readTable(log1) + readTable(log2)