Python 程式不求人系列 - 零章之參 - Python 物件型式
與其他程式語言相似,Python有規定的物件型式(Object type),如下整理 物件型式 範例 數值(Numbers) 4321、3.1415926、 3+4j(複數)、 Decimal()、 Fraction() 字串(String) 'spam'、 "Tom's"、b'a\x01c' 串列(Lists) [1,[2, 'three'],4.5] 字典Dictionaries {'food':'spam','taste':'yum'} 值組Tuples ...