标签:pop src 操作 list 指定位置 技术 index 指定 mic
list的切片:
list的增加:
a.append(‘cdfd‘)
a.extend(b)
list的修改:
a[start:end]=[23,46,56]
list的删除
a.remove(‘内容‘)
a.pop(index) 如果没有给指定位置,默认删除list的最后一个。
del a 删除整个list
del a[3] 删除a中下标为3的内容
标签:pop src 操作 list 指定位置 技术 index 指定 mic
原文地址:https://www.cnblogs.com/boke-ghc/p/13766345.html