以下程序的输出结果是:
L1 =[‘abc‘, [‘123‘,‘456‘]]
L2 = [‘1‘,‘2‘,‘3‘]
print(L1 > L2)
AFalse
BTypeError: ‘>‘ not supported between instances of ‘list‘ and ‘str‘
C1
DTrue
AFalse
BTypeError: ‘>‘ not supported between instances of ‘list‘ and ‘str‘
C1
DTrue