跳至主要內容
Python常用数据结构

列表 list

列表方法

  • list.append(obj)
  • list.count(obj)
  • list.extend(seq)
  • list.index(obj)
  • list.insert(index, obj)
  • list.pop([index=-1])
  • list.remove(obj)
  • list.reverse()
  • list.sort(cmp=None, key=None, reverse=False)

Ek0wraith大约 4 分钟笔记APIPython数据结构