python的內置類型如下:
lString:字符串放在單引號、雙引號、三引號(多行時)中,從0開始索引,支持
n查:find、index、
n切片:s[0:2]、s[1:]
n連接:“abc”+“ef”=>“abcdef”、join
n分割:split
n格式化:format
n。。。大小寫轉換、編碼等操作
llist,[]:names=[“Dave”,“Mark”,“Ann”],列表從0開始索引,索引元素names[1]。列表可以包括任意類型的對象,可以嵌套。支持增、刪、查、分片。
n增:insert、append
n刪:del、remove、pop
n查:search
n切片:names[0:2]、[1:]
n連接:[1,2,3]+[4,5]=>[1,2,3,4,,5]、extend
n反轉:reverse
ltuple,():address=(“www.python.org”,80),a=(80,)。元組語法與list相似,意義相當于枚舉,可以為空,如果只含有一個元素,需要加逗號以區別于表達式(“one”,)。元組創建之后不可修改,即無法替換、刪除、插入,但支持
n索引:address[0]=>www.python.org
n切片:address[0:]=>('www.python.org',80)
n連接:(“www.python.org”,)+(80,)=>('www.python.org',80)
nhost,port=address:host=>www.python.org,port=>80
l字典:dict(),{}:address={"host":"www.python.org","port":80},支持
n索引:address[“host”]=>“www.python.org”,
nget:address.get("host")=>“www.python.org”
n鍵:address.keys()=>['host','port']
nin:"host"inaddress=>True
n刪除:deladdress["host"]=>{'port':80}
l集合:set(),a=set([1,2,3,4]);一個數值集合b=set(“hello”),一個唯一字符集合。與列表、元組不同,集合中的元素是無序的,無法通過數字索引,且元素不能重復。
n并集:a|b=>set([1,2,3,4,'h','l','o','e'])
n交集:a&b=>set([])
n差集:a-b=>set([1,2,3,4]),即在a中不在b中元素
n對稱差集:a^b=>set([1,2,3,'e','h','l','o',4])
nadd:a.add(5)=>set([1,2,3,4,5])#添加一項
nupdate:a.update([6,7,8])=>set([1,2,3,4,5,6,7,8])#添加多項
nremove:a.remove(5)=>set([1,2,3,4,6,7,8])#刪除一項
以上內容為大家介紹了python豐富的內置類型及相關操作,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。