您好,登錄后才能下訂單哦!
這篇文章主要介紹“python容器的內置通用函數如何使用”,在日常操作中,相信很多人在python容器的內置通用函數如何使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”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))
運行效果如下:
下面是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))
運行效果如下:
下面是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))
運行效果如下:
到此,關于“python容器的內置通用函數如何使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。