我们如何从Python函数返回列表?

我们有很多方法可以从python函数返回列表。下面给出一种这样的功能。

示例

def retList():
    list = []
    for i in range(0,10):
        list.append(i)
    return list
a = retList()print a

输出结果

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]