我不明白Python中pprint中的宽度字段
我不太清楚这个概念。 有人能给我一些例子来演示 python 中 pprint 中宽度的概念吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我不太清楚这个概念。 有人能给我一些例子来演示 python 中 pprint 中宽度的概念吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
基本上它会尝试将您的输出限制为特定宽度。
这是一个例子:
结果是:
但是如果你做同样的事情但改变宽度(比如10):
你会得到:
这是Python文档的修改示例(http://docs.python.org/library/pprint.html )。对于这样的事情,我发现打开 python 中断器并玩一下并查看命令如何对您输入的内容做出反应更容易。
Basically it tries to limit your output to a specific width.
Here's an example:
result is:
but if you do the same thing but change the width(say to 10):
you get:
This is a modified example from the python docs ( http://docs.python.org/library/pprint.html ). For things like this, I find it easier to just open the python interrupter and play around and see how the commands react to what you enter.