Python list, dict, set, tuple

简介: list方法append: 添加一个新的元素到末尾extend: 扩展元素insert: 在任何位置插入元素pop: 弹出末尾的元素remove: remove first occurrence of valuesort: 原地排序reversecountcleardict方...

list方法

  • append: 添加一个新的元素到末尾
  • extend: 扩展元素
  • insert: 在任何位置插入元素
  • pop: 弹出末尾的元素
  • remove: remove first occurrence of value
  • sort: 原地排序
  • reverse
  • count
  • clear

dict方法

  • not in
  • clear
  • keys
  • values
  • items
  • get
  • setdefault
  • del a_dict

tuple方法

  • count
  • index

set 方法

目录
相关文章
|
2月前
|
存储 分布式计算 NoSQL
大数据-40 Redis 类型集合 string list set sorted hash 指令列表 执行结果 附截图
大数据-40 Redis 类型集合 string list set sorted hash 指令列表 执行结果 附截图
28 3
|
2月前
|
存储 Python
Python多个set中的交集
Python多个set中的交集
25 1
|
3月前
|
Python
python 如何将QueryDict转化为dict | 18
python 如何将QueryDict转化为dict | 18
|
3月前
|
Python
Python中的tuple:探索其强大功能与实用技巧
Python中的tuple:探索其强大功能与实用技巧
36 1
|
2月前
|
并行计算 Python
Python错误笔记(一):CUDA initialization: CUDA unknown error - this may be due to an incorrectly set up env
这篇文章讨论了CUDA初始化时出现的未知错误及其解决方案,包括重启系统和安装nvidia-modprobe。
163 0
|
2月前
|
索引 Python
Python列表操作-推导式(List Comprehension)
Python列表操作-推导式(List Comprehension)
27 0
|
3月前
|
Python
Python量化炒股的获取数据函数— get_billboard_list()
Python量化炒股的获取数据函数— get_billboard_list()
46 0
|
3月前
|
存储 数据处理 Python
Python中的Set集合:高效数据处理的利器
Python中的Set集合:高效数据处理的利器
52 0
|
4月前
|
索引 Python 容器
为什么Python中会有集合set类型?
为什么Python中会有集合set类型?
|
4月前
|
存储 缓存 索引
python 的 tuple(元组) 是不是冗余设计?
python 的 tuple(元组) 是不是冗余设计?