Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例えば:
>>> print json.dumps('růže') "r\u016f\u017ee"
(もちろん、実際のプログラムでは単なる文字列ではなく、 を使用すると、ファイルでもこのように表示されますjson.dump()) 同様に単純に "růže" を出力したいのですが、どうすればよいですか?
json.dump()
ensure_ascii=False引数を json.dumps に渡します。
ensure_ascii=False
>>> print json.dumps('růže', ensure_ascii=False) "růže"