更改 PyYAML 输出中的列表格式

发布于 2024-08-22 11:44:52 字数 351 浏览 5 评论 0原文

这就是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就像说晚安 2024-08-29 11:44:52

您需要将 'default_flow_style=False' 参数添加到调用中:

In [6]: print(yaml.dump(plan, default_flow_style=False))
Business Plan:
- Collect Underpants
- '?'
- Profit

You need to add the 'default_flow_style=False' argument to the call:

In [6]: print(yaml.dump(plan, default_flow_style=False))
Business Plan:
- Collect Underpants
- '?'
- Profit
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文