python 中的數據類型轉換

1、int、float、str

int(float)

int(str) str必須是符合整型要求的str

2、dict、str、list、tuple

dict=eval(str)

tuple=tuple(list)

list=list(tuple)

str=str(tuple)

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章