Python資料型別

2021-10-10 07:06:18 字數 1818 閱讀 2079

『』'內建資料型別

在程式設計中,資料型別是乙個重要的概念。

變數可以儲存不同型別的資料,並且不同型別可以執行不同的操作。

在這些類別中,python 預設擁有以下內建資料型別:

『』』test_str = 『我是str』

print(『test_str的資料型別是:』, type(test_str))

#test_str的資料型別是:

test_int = 20201105

print(『test_int的資料型別是:』, type(test_int))

#test_int的資料型別是:

test_float = 666.222

print(『test_float的資料型別是:』, type(test_float))

#test_float的資料型別是:

test_complex = 4 + 5j

print(『test_complex的資料型別是:』, type(test_complex))

#test_complex的資料型別是:

test_list = [『一』, 『個』, 『小』, 『笨』, 『egg』, 『0-0』]

print(『test_list的資料型別是:』, type(test_list))

#test_list的資料型別是:

test_tuple = (『tuple』, 『is』, 『unchangeable』, 『tuple是不可變的』)

print(『test_tuple的資料型別是:』, type(test_tuple))

#test_tuple的資料型別是:

test_range = range(1024)

print(『test_range的資料型別是:』, type(test_range))

#test_range的資料型別是:

test_dict =

print(『test_dict的資料型別是:』, type(test_dict))

#test_dict的資料型別是:

test_set =

print(『test_set的資料型別是:』, type(test_set))

#test_set的資料型別是:

test_frozenset = frozenset()

print(『test_frozenset的資料型別是:』, type(test_frozenset))

#test_frozenset的資料型別是:

test_bool = false

print(『雙性人test_bool的資料型別是:』, type(test_bool))

#雙性人test_bool的資料型別是:

test_bytes = b』i am bytes』

print(『test_bytes的資料型別是:』, type(test_bytes))

#test_bytes的資料型別是:

test_bytearray = bytearray(2)

print(test_bytearray)

print(『test_bytearray的資料型別是:』, type(test_bytearray))

#bytearray(b』\x00\x00』)

#test_bytearray的資料型別是:

test_memoryview = memoryview(bytes(2))

print(test_memoryview)

print(『test_memoryview的資料型別是:』, type(test_memoryview))

##test_memoryview的資料型別是:

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...