Python資料型別

2021-09-30 00:27:40 字數 1773 閱讀 2867

python中的資料型別

python 中的六個常用資料型別:

集合:

set:無序,沒有索引,不能切片

字典:

dictionary:key:value鍵值對是其最基本的概念

set

集合是無序的,不重複的,不支援共有操作和切片操作。

定義空集合:set()

->

序列會刪除重複元素

->

求序列長度

len()

->6

查詢

1 in

->true

求兩個集合的差集

- ->

兩個集合共有元素:交集

& ->

合併兩個集合:合集\並集

| ->

字典dict

可以有很多key和value,是集合型別,不是序列

value可以是:str int float list set dict

key必須是不可變型別:int str tuple…

type()

->dict

通過key來訪問value

[『q』]

->『新月打擊』

字典不允許key重複,若重複則刪除上乙個相同key的value

[『q』]

->『蒼白之瀑』

->

序列:list str tuple

下標索引:[1,2,3][2]

->3

『hello world』[2]

->l

每個序列其中所有元素都有乙個固定的序號。

切片

[1,2,3,4,5][0:3]

->[1,2,3]

[1,2,3,4,5][-1:]

->[5]

「hello world」[0:8:2]

->hlow

查詢 in bool型

3是否在這個序列中

3 in [1,2,3]

->true

3 in [1,2]

->false

3是否不在這個序列中

3 not in [1,2,3,4,5]

->false

檢視列表中有多少個元素len

len([1,2,3,4,5,6])

->6

len(「hello world」)

->11

求序列中最大的元素max

max([1,2,3])

->3

max(『hello world』)

->w

求序列中最小的元素min

min([1,2,3])

->1

min(『hello world』)

->d

python資料型別

python的資料型別 數字 字串 列表 元祖 字典 檢視型別可以使用type函式如 type abc 數字 整型 長整型 浮點型 複數 字串 單引號 雙引號 3引號 a abcde a 1 b a 2 3 c a 2 4 cd a 2 cde a 2 ace a 1 e a 3 2 c a abc...

python 資料型別

python有五個標準的資料型別 使用del可以刪除資料的引用 例,one 100 del one del 也可以同時刪除多個引用 變數。例del one,two,three print one 將提示one 沒有定義 python支援四種不同的數值型別 python的字串列表有2種取值順序 加號 ...

Python 資料型別

一 整數 python可以處理任意大小的整數,當然包括負整數,在python程式中,整數的表示方法和數學上的寫法一模一樣,例如 1,100,8080,0,等等。計算機由於使用二進位制,所以,有時候用十六進製制表示整數比較方便,十六進製製用0x字首和0 9,a f表示,例如 0xff00,0xa5b4...