Skip to content

Instantly share code, notes, and snippets.

@013231
Created January 25, 2013 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 013231/4634405 to your computer and use it in GitHub Desktop.
Save 013231/4634405 to your computer and use it in GitHub Desktop.
your_json = json.dumps(your_dict, ensure_ascii=False) #ensure_ascii參數阻止轉義, 並將返回值變成unicode
file_obj.write(your_json.encode('utf-8')) #unicode不能直接寫入文件, 需編碼成str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment