華為云計(jì)算 云知識(shí) 學(xué)習(xí)Python編程需要什么基礎(chǔ):數(shù)據(jù)類型
學(xué)習(xí)Python編程需要什么基礎(chǔ):數(shù)據(jù)類型

Python支持的標(biāo)準(zhǔn)數(shù)據(jù)類型主要有如下幾種:

數(shù)字:如整型(123)、布爾型(True/False)、浮點(diǎn)型(1.23)

字符串(String):如 ’I love Python’,”I do not love Python”

列表(List):如 [ ‘a(chǎn)’, ‘b’, ‘c’, ‘d’],[ 1, 2, 3, 4 ]

元組(Tuples): 如(‘a(chǎn)’, ‘b’, ‘c’) 元組是不可變列表,一旦創(chuàng)建就無法改變

字典(Dictionaries): 如{‘name’: ‘Tom’, ‘a(chǎn)ge’: 24},鍵值對(duì)一一對(duì)應(yīng)