整型(int)
浮點型(float)
布林型(bool)
字串(str)
元組(tuple)
列表(list)
集合(set)
字典(dict)
python是一種物件導向的解釋型語言
python中不需要指定資料型別,在程式執行時將被賦予特定的資料型別
可以通過**type()**獲取資料的型別
num1 =
1print
(type
(num1)
)num2 =
1.1print
(type
(num2)
)a =
true
print
(type
(a))
c =[10,
20,30]
print
(type
(c))
d =(10,
20,30)
print
(type
(d))
e =print
(type
(e))
f =print
(type
(f))
g ='hello python'
print
(type
(g))
python的資料型別
python變數沒有型別,但是python有資料型別 520 和520 是不一樣的,乙個是字串,乙個是數字 python資料型別包括很多,例如數值型別包括 e記法,表示科學計數法,屬於浮點型數值 6 100 000 000 6.1 1 000 000 000 6.1e9 布林型 ture和false...
python的資料型別
str pythonzifuchuan 字串是有索引值的,從左到右索引預設0開始的,最大範圍是字串長度少1,從右到左索引預設 1開始的,最大範圍是字串開頭 print str 輸出完整字串 print str 0 輸出字串中的第乙個字元 print str 2 5 輸出字串中第三個至第五個之間的字串...
python的資料型別
一 字串 1,定義方法 1 用單引號 str1 hello world 2 用雙引號 str2 hello world 注 普通字串的定義,上述兩種定義方法沒有任何區別 單字串中出現單引號時,字串的定義使用雙引號str3 let.s go 如果字串中有雙引號,使用轉義字元 轉義成普通字元 say l...