单项选择题

以下代码的输出结果是(_____)。 L1 =["abc", ["123","456"]] L2 = ["1","2","3"] print(L1 > L2)

A、False
B、True
C、TypeError: ">" not supported between instances of "list" and "str"
D、1