Python字典轉字串雙引號變成單引號
阿新 • • 發佈:2021-01-22
技術標籤:AIPython字典轉字串雙引號消失雙引號變單引號dict轉str字典轉字串雙引號變單引號
Python字典轉字串雙引號變成單引號
問題描述
Python 上定義了字典,並且鍵值對使用了雙引號,使用str()轉換成字串後發現雙引號變成了單引號。
解決方案
使用 json.dumps() 將字典轉成字串,就可以保留雙引號了。
展示例子
import json
def main():
dict = {"a": "aa", "b": "bb"}
str1 = str(dict)
str2 = json.dumps(dict)
print(str1)
print(str2)
if __name__ == '__main__':
main()