概覽
數字: int,long,float,complex,bool
字元: str,unicode
清單: list##字典: dict
元組: tuple
檔案: file
其他類型:集合(set),frozenset,類別類型,None
其他檔案類別工具:管道(pipes),先進先出管道(fifos),套接字檔(socket)
類型轉換
非字元-->字元
str() | #和print的結果相同 |
repr () | 物件的精確值,但大多數使用eval(repr(object)) == object |
format() | format( value[, format_spec]) |
可轉換的非數值-->數值
#序列化
list()##字串轉換為清單 |
|
| tuple() | 字串轉換為元組
| #set() | #字串轉換為集合
| #frozenset() | 字串轉換為不可變集合
| dict()##根據(key,value )元組清單建立字典 |
字元與ASCII轉換
##chr ord
進位轉換
bin | 將整數轉換為二進位字串 |
oct | 將整數轉換為八進位字串 |
hex | 將整數轉換為十六進位字串 |
#eval | 轉換為數值 |
#
以上是python核心資料類型分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!