python容器的內置通用函數操作

學委之前分享瞭tuple/list和dict等類型,這幾個類型都是用來存放數據的容器。

python對它們有幾個通用的操作。

我們看一看。

這些數據容易的通用操作都有哪些?

除瞭數據的增刪查改(除瞭tuple不可變長度和元素不可變),我們還需要下面的操作:

  • 比較比對操作
  • 計算元素數量
  • 把容器打印輸出
  • 獲取容器類型

使用 == 操作符號比對是否相等

len(容器對象)

str(容器對象)

type(容器對象)#type支持對各種對象的類型進行判斷

我們看看幾個容器的代碼

嚴格來說,我們不用tuple元組類型做數據容器。

我們更多用它來描述定長的結構。

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2021/11/8 12:40 上午
# @Author : LeiXueWei
# @CSDN/Juejin/Wechat: 雷學委
# @XueWeiTag: CodingDemo
# @File : __init__.py.py
# @Project : hello


tuple1 = ("name", "leixuewei")
tuple2 = ("name", "leixuewei")
print("len : ", len(tuple1))
print("== : ", tuple1 == tuple2)
print("dict1 : ", str(tuple1))
print("type : ", type(tuple1))

運行效果如下:

屏幕快照 2021-11-09 上午12.44.18.png

下面是list的同樣操作:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2021/11/8 12:40 上午
# @Author : LeiXueWei
# @CSDN/Juejin/Wechat: 雷學委
# @XueWeiTag: CodingDemo
# @File : commonlistops.py
# @Project : hello

list1 = ["name", "leixuewei"]
list2 = ["name", "leixuewei"]
print("len : ", len(list1))
print("== : ", list1 == list2)
print("list1 : ", str(list1))
print("type : ", type(list1))

運行效果如下:

屏幕快照 2021-11-09 上午9.02.24.png

下面是dict字典類型的操作:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2021/11/8 12:40 上午
# @Author : LeiXueWei
# @CSDN/Juejin/Wechat: 雷學委
# @XueWeiTag: CodingDemo
# @File : __init__.py.py
# @Project : hello


dict1 = {"name": "leixuewei"}
dict2 = {"name": "leixuewei"}
print("len : ", len(dict1))
print("== : ", dict1 == dict2)
print("dict1 : ", str(dict1))
print("type : ", type(dict1))

運行效果如下:

屏幕快照 2021-11-09 上午12.44.28.png

總結

上面的這些操作是python內置函數,對幾種數據容器,操作很對稱,也不用特別記憶。多敲幾次代碼就記住瞭。

到此這篇關於python容器的內置通用函數操作的文章就介紹到這瞭,更多相關python內置通用函數內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: