更改 PyYAML 输出中的列表格式
这就是 PyYAML 在我的机器上的行为方式:
>>> plan = {'Business Plan': ['Collect Underpants', '?', 'Profit']}
>>> print(yaml.dump(plan))
Business Plan: [Collect Underpants, '?', Profit]
我想要的是这个输出(两者都是有效的 YAML):
Business Plan:
- Collect Underpants
- '?'
- Profit
有某种选项可以做到这一点吗?
This is how PyYAML behaves on my machine:
>>> plan = {'Business Plan': ['Collect Underpants', '?', 'Profit']}
>>> print(yaml.dump(plan))
Business Plan: [Collect Underpants, '?', Profit]
What I want instead is this output (both is valid YAML):
Business Plan:
- Collect Underpants
- '?'
- Profit
Is there some kind of option that would do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 'default_flow_style=False' 参数添加到调用中:
You need to add the 'default_flow_style=False' argument to the call: