python

简介:


字典(dict) 转为字符串(string)

for key, value in sample_dic.items():    
    print "\"%s\":\"%s\"" % (key, value)

字符串(string)转为字典(dict)

>>> a = "{'a': 'hi', 'b': 'there'}"
>>> b = eval(a)
>>> b
{'a': 'hi', 'b': 'there'}
>>> exec ("c=" + a)
>>> c
{'a': 'hi', 'b': 'there'}









本文转自 Art_Hero 51CTO博客,原文链接:http://blog.51cto.com/curran/1608622,如需转载请自行联系原作者
目录
相关文章
|
7月前
|
机器学习/深度学习 XML TensorFlow
python (3)
python (3)
41 0
|
7月前
|
Python
1194: 最简单的题(python)
1194: 最简单的题(python)
|
Python
【Python三体问题】
【Python三体问题】
197 0
【Python三体问题】
|
人工智能 算法 Java
|
索引 Python
第9天:Python tupple
第9天:Python tupple
108 0
|
Java Python Windows
|
Web App开发 测试技术 程序员