python str dict list 轉換
1、字典(dict)
dict = {‘name’: ‘Zara’, ‘age’: 7, ‘class’: ‘First’}
1.1 字典——字串
type(str(dict))
1.2 字典——元組
tuple(dict)
1.3 字典——元組
tuple(dict.values())
1.4 字典——列表
list(dict)
1.5 字典——列表
dict.values
2、元組
tup=(1, 2, 3, 4, 5)
2.1 元組——字串
tup.__str__()
2.2 元組——列表
list(tup)
2.3 元組不可以轉為字典
3、列表
nums=[1, 3, 5, 7, 8, 13, 20];
3.1 列表——字串
str(nums)
3.2 列表——元組
tuple(nums)
3.3 列表不可以轉為字典
4、字串
4.1 字串——元組
tuple(eval("(1,2,3)"))
4.2 字串——列表
list(eval("(1,2,3)"))
4.3 字串——字典
type(eval("{'name':'ljq', 'age':24}"))
from:http://blog.csdn.net/violet_echo_0908/article/details/52486689
相關文章
- Python3 dict和str互轉Python
- Python 字典 dict 獲取索引 轉化為 listPython索引
- Python list,dict問題解答Python
- Python 的List 和tuple,Dict,SetPython
- python list tuple str dic series dataframePython
- 【python】str與json型別轉換PythonJSON型別
- python str與bytes之間的轉換Python
- python str與byte轉換 encode decodePython
- Python之list,string,tuple,dict練習題Python
- Python資料型別-str,list常見操作Python資料型別
- pandas中dataframe與dict相互轉換
- python中的list,tuple,set和dict(參考python文件)Python
- Python 內建型別 dict, list 執行緒安全嗎Python型別執行緒
- list與字串轉換字串
- DataTable與List相互轉換
- 容器,型別轉換。List。型別
- List和ObservableCollection的轉換
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- java json字串轉換為物件,轉換為listJavaJSON字串物件
- 陣列轉換成List集合陣列
- List 和 陣列 的轉換陣列
- Python中基礎資料型別(List、Tuple、Dict)的概念和用法Python資料型別
- Python dict(字典)Python
- python存取dictPython
- Python Dict用法Python
- 【轉】Python格式化字串str.format()Python字串ORM
- Python 字串 strPython字串
- Java 中陣列轉換為 ListJava陣列
- DataTable轉換list泛型集合(反射)泛型反射
- Python中元組tuple的作用以及tuple和list的轉換Python
- Python中字典dictPython
- Python中的dictPython
- Python字典dict用法Python
- python--字典dictPython
- python dict{}和set([])Python
- python str.endswithPython
- python: 理解__str__Python
- 在Python中,為什麼從dict查詢元素比list快?(待填坑)Python