• 2022-05-25
    如下程序的输出结果是:L1 =[‘abc’, [‘123’,‘456’]]L2 = [‘1’,‘2’,‘3’]print(L1 >; L2)
    A: False
    B: TypeError: ‘>;’ not supported between instances of ‘list’ and ‘str’
    C: 1
    D: True