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.
Pythonのyaml実装のdump()メソッドに、1行に1つの要素のリストスタイルを使用させるにはどうすればよいですか?
たとえば、私が実際に欲しいときにyaml.dump([1,2,3])私が得るとき:"[1, 2, 3]\n"
yaml.dump([1,2,3])
"[1, 2, 3]\n"
- 1 - 2 - 3
あなたが使用することができますdefault_flow_style:
default_flow_style
>>> print yaml.dump([1,2,3], default_flow_style=False) - 1 - 2 - 3