- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何将 Python PrettyPrint 输出存储到某个变量。
除了 eyeD3 还有其他方法吗?
像这样-
string_output = pp.pprint(dict)
最佳答案
使用 pprint.pformat
功能:
>>> my_dict = dict((i, i) for i in range(30))
>>> pp.pformat(my_dict)
'{0: 0,\n 1: 1,\n 2: 2,\n 3: 3,\n 4: 4,\n 5: 5,\n 6: 6,\n 7: 7,\n 8: 8,\n 9: 9,\n 10: 10,\n 11: 11,\n 12: 12,\n 13: 13,\n 14: 14,\n 15: 15,\n 16: 16,\n 17: 17,\n 18: 18,\n 19: 19,\n 20: 20,\n 21: 21,\n 22: 22,\n 23: 23,\n 24: 24,\n 25: 25,\n 26: 26,\n 27: 27,\n 28: 28,\n 29: 29}'
>>> print(pp.pformat(my_dict))
{0: 0,
1: 1,
2: 2,
3: 3,
4: 4,
5: 5,
6: 6,
7: 7,
8: 8,
9: 9,
10: 10,
11: 11,
12: 12,
13: 13,
14: 14,
15: 15,
16: 16,
17: 17,
18: 18,
19: 19,
20: 20,
21: 21,
22: 22,
23: 23,
24: 24,
25: 25,
26: 26,
27: 27,
28: 28,
29: 29}
关于Python PrettyPrint 输出到变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17463483/
我以前从未使用过 druapal。所以我需要有关如何执行此操作的具体信息。对于普通页面, pretty-print 是这样工作的:http://google-code-prettify.googlec
我正在从 H 切换到 L import qualified Text.PrettyPrint.HughesPJ as H import qualified Text.PrettyPrint.Leije
我的项目中有一个嵌套字典,它是通过 PrettyPrint 打印的(只需将嵌套字典扔进去即可)。 但是这个嵌套的字典必须被嵌套的 MutableMapping 对象替换,因为我需要覆盖一些 Magic
使用类似的东西: pp = pprint.PrettyPrinter(indent=4, width=...).pprint pp(my_list)的当前输出: [ 1, 2, 3
我正在尝试美化我在 Blogger 中的代码。我已将 Google JS 和 CSS 文件链接到我的模板。问题是我希望代码在页面加载时得到美化,所以我添加了 prettyPrint();在模板上加载页
如何将 Python PrettyPrint 输出存储到某个变量。 除了 eyeD3 还有其他方法吗? 像这样- string_output = pp.pprint(dict) 最佳答案 使用 ppr
我有这个 JavaScript(带有 jQuery): var g_files_added, socket, cookie, database = null; var file_contents
我正在处理 http://twitterbootstrap.org/bootstrap-form-validation/ .除了在表单中各个字段的末尾添加图像外,我已经使项目正常运行。 我的表格看起来
PrettyPrint 很棒,但我遇到了以下问题。 我有一个这样打印的结构: { 'table': { 'tr': [ { 'tr': { 'td': [ {'td': 'Period'},
我的 Javascript 有问题 - $.ajax({ 'url': message.action, 'data': parameterMap, 'cache': true, 'dataT
我在我的博客上使用 Syntax Highlighter 来美化代码。现在我想把它改成 Google Open Source Prettify。 在 Syntax HighLighter 中,我们通过
我正在尝试使用 prettyprint 来格式化我的代码的 UI,但我没有完成任何格式化。 HTML: <div> This is a div </div&
我是 Perl(Windows 7 上的 Strawberry Perl v5.12.3)的新手,试图编写一个脚本来帮助我完成重复的 HTML 格式化任务。这些文件将来需要手动编辑,我希望它们是人性化
出于某种原因,我的下面的代码给出了异常:javax.xml.transform.TransformerConfigurationException:无法编译样式表 public String remo
写入文件时如何使用 pretty-print ? package tests; import java.io.File; import java.io.FileOutputStream; import
我目前正在使用 https://github.com/danielstjules/php-pretty-datetime用于打印我的时间。目前它正在吐出 UTC 时间,因为那是 MYSQL 中的时间。
我正在使用 jackson 2.8.4 并尝试在一个名为 json 的单行字符串中漂亮地打印(即使用缩进很好地格式化)一些 JSON。 我试过了 ObjectMapper mapper = new O
希望您能帮助我解决ReferenceError: PrettyPrint is not Defined。 How do I contact you? One moment... $(document
继续 from this question , 我正在尝试将 [String : Any] 转换为 String,然后将该 String 传递给 forHTTPHeaderField 尝试 1: 没有
我有一个这样的 JSON 字符串 {"menu":{"header":"SVG Viewer","items":[{"id":"Open"}, {"id":"OpenNew","label":"Ope
我是一名优秀的程序员,十分优秀!