數字: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]) |
#專案 | 操作 |
---|---|
int() | 轉換為整數 |
#float() | 轉換為浮點 |
項目 | |
#字串轉換為清單 | |
字串轉換為元組 | |
字串轉換為集合 |
字元與ASCII轉換 | chr() ord() 登入後複製 |
---|---|
#專案 | |
oct | |
hex |
eval
###轉換為數值################## ######以上是python核心資料類型介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!