• 2022-10-24
    ‎已知lt=[1,2,3],下面表达式能够修改lt为[1,2,3,4]的是​
    A: lt+=4
    B: lt.append(4)
    C: lt.insert(3,4)
    D: lt.insert(-1,4)