如何反转 python 中的列表列表?

How to reverse a list of lists in python?

我想知道如何反转 python 中的列表列表。例如,

原文:list = [[1,2,3],[4,5,6],[7,8,9]] 输出:new_list = [[7,8,9],[4,5,6],[1,2,3]]

现在,我正在尝试这个:

new_list = reversed(list)

然而,这似乎不起作用。

In [24]: L = [[1,2,3],[4,5,6],[7,8,9]]

In [25]: L[::-1]
Out[25]: [[7, 8, 9], [4, 5, 6], [1, 2, 3]]