当前位置: 首页 > news >正文

python队列操作

1. 队列初始化

创建空的队列:

test_list = []

使用初始值:

test_list = [1, 2, 3, 4, 5]
test_list3 = ["a", "b", "c", "d"]

使用列表生成式创建一个带有初始元素的列表:

>>> test_list = [x for x in range(3, 15, 2)]
>>> print(test_list)
[3, 5, 7, 9, 11, 13]

将字典的key转换为队列:

>>> test_dict = {"one":1,"two":2,"three":3}
>>> print(list(test_dict.keys()))
['one', 'two', 'three']

将字典的value都转换为队列:

>>> test_dict = {"one":1,"two":2,"three":3}
>>> print(list(test_dict.values()))
[1, 2, 3]

将字典的key和value都转换为队列:

>>> test_dict = {"one":1,"two":2,"three":3}
>>> print(list(test_dict.items()))
[('one', 1), ('two', 2), ('three', 3)]

2. 判断一个元素是否在队列中:

index函数,返回元素在队列中的位置:

test_list = [1, 2, 3, 4, 5]
try:print(test_list.index(3))
except Exception as e:print('队列中不存在!')

count函数,统计元素在队列中的次数:

test_list = [1, 2, 3, 4, 5]
print(test_list.count(3))

通过in来判断:

test_list = [1, 2, 3, 4, 5]
a = 3
if a in test_list :print("a在队列中")
else:print("a不在队列中")

3. 向队列中加入新元素:

append函数,在队列尾部追加:

>>> test_list = [1,2,3,4]
>>> test_list.append(5)
>>> test_list.append(6)
>>> test_list.append(7)
>>> print(test_list)
[1, 2, 3, 4, 5, 6, 7]

insert函数,在队列特定位置插入:

>>> test_list = [1,2,3,4]
>>> test_list.insert(2,9)
>>> print(test_list)
[1, 2, 9, 3, 4]

 更改队列特定位置的值:

>>> test_list = [1, 2, 3, 4, 5]
>>> test_list[3]=7
>>> print(test_list)
[1, 2, 3, 7, 5]

4. 向队列中追加另外一个队列:

extend函数,在队列的末尾追加新队列:

>>> test_list = [1, 2, 3, 4, 5]
>>> test_list2 = [6, 7]
>>> test_list.extend(test_list2)
>>> print(test_list)
[1, 2, 3, 4, 5, 6, 7]

将两个队列合并:

>>> test_list = [1, 2, 3, 4, 5]
>>> test_list2 = [6, 7]
>>> test_list3 = test_list + test_list2
>>> print(test_list3)
[1, 2, 3, 4, 5, 6, 7]

5. 遍历队列:

>>> test_list = [1, 2, 3, 4, 5]
>>> for a in test_list:
...     print(a)
...
1
2
3
4
5

反向遍历队列:

>>> test_list = [1, 2, 3, 4, 5]
>>> for a in reversed(test_list):
...     print(a)
...
5
4
3
2
1

6. 队列排序:

sort(cmp=None, key=None, reverse=False)函数,升序排列:

>>> test_list = [2, 1, 3, 5, 6, 8, 9, 7, 0]
>>> test_list.sort()
>>> print(test_list)
[0, 1, 2, 3, 5, 6, 7, 8, 9]

降序排列,使用sort(reverse=True):

>>> test_list = [2, 1, 3, 5, 6, 8, 9, 7, 0]
>>> test_list.sort(reverse=True)
>>> print(test_list)
[9, 8, 7, 6, 5, 3, 2, 1, 0]

7. 获取队列长度:

>>> test_list = [2, 1, 3, 5, 6, 8, 9, 7, 0]
>>> len(test_list)
9

8. 获取队列特定位置元素的值:

>>> test_list = [1, 2, 3, 4, 5]
>>> print(test_list[3])
4

9. 删除队列中的元素:

remove函数,删除队列中匹配到某个值的第一个元素

>>> test_list = [2, 1, 3, 5, 6, 8, 9, 7, 0]
>>> test_list.remove(2)
>>> print(test_list)
[1, 3, 5, 6, 8, 9, 7, 0]

pop函数,删除队列中指定位置的元素,并返回该元素

>>> test_list = [2, 1, 3, 5, 6, 8, 9, 7, 0]
>>> test_list.pop(2)
3
>>> print(test_list)
[2, 1, 5, 6, 8, 9, 7, 0]

pop参数为空时,删除队列中最后一个元素,并返回该元素

>>> test_list = [2, 1, 3, 5, 6, 8, 9, 7, 0]
>>> test_list.pop()
0
>>> print(test_list)
[2, 1, 3, 5, 6, 8, 9, 7]

10. 清除队列中的元素:

>>> test_list = [2, 1, 3, 5, 6, 8, 9, 7, 0]
>>> test_list.clear()
>>> print(test_list)
[]


http://www.mrgr.cn/news/29568.html

相关文章:

  • 李沐也看好的方向:多模态预训练!最新成果刷爆SOTA,轻松拿下顶会
  • arm
  • 蚂蚁在 RAG 与向量检索上的实践:技术应用与创新分析
  • 新书出版,大陆首本NestJS图书《NestJS全栈开发解析:快速上手与实践》
  • SDKMAN!软件开发工具包管理器
  • JS全选反选案例
  • 组合式 API 和选项式 API的区别
  • VulhubDC-4靶机详解
  • EtherCAT 转 Profinet 网关在深海钻探工作中的作用
  • Java小区物业管理系统
  • axure的下载,激活,汉化全过程,多图
  • 计算机知识科普问答--12 (56-60)
  • git pull的merge和rebase模式
  • 闲置物品交易系统小程序的设计
  • PWM控制技术(基本思想、逆变电路及其控制方法)
  • macOS平台TensorFlow环境安装
  • Day22笔记-多态函数重写运算符重载对象的内置内容
  • 低代码门户技术:构建高效应用的全新方式
  • 硬件基础知识
  • vue3+ant design vue 中弹窗自定义按钮设置及以冒号为基准布局