新人求助,python的insert怎么用啊?我这个输入好多次都失败的
我输入了num.insert(1,4,/)也不行
收起
num=[1,2,3] num.insert(2,111) print(num)
[1, 2, 111, 3]
报告相同问题?