打印,是所有程序员从小白时期就具备的神技,遇事不决打印一下,是 DEBUG 最简单且不依赖 IDE 的方式,自定义各种日志输出,也是项目成型后必备功能.但是为了优雅的打印格式,往往需要对各种对象进行特殊格式化,可遇到字典和大段字符串也不好处理.这篇文章介绍两个库模块,可以快速有效的解决所有 Python 对象的打印输出,没错,所有. pprint 这是 Python 标准库模块,全称 pretty printer,可以让各种数据结构更美观地输出. >>> print(game) {'pl…
使用 pprint 模块 pprint 模块( pretty printer ) 用于打印 Python 数据结构. 当你在命令行下打印特定数据结构时你会发现它很有用(输出格式比较整齐, 便于阅读). --------------------------------------------------------------- import pprint data = (    "this is a string", [1, 2, 3, 4], ("more tuples&q…
# -*- coding: cp936 -*- #python 27 #xiaodeng #python之模块pprint之常见用法 import pprint data = [(1,{'a':'A','b':'B','c':'C','d':'D'}),(2,{'e':'E','f':'F','g':'G','h':'H','i':'I','j':'J','k':'K','l':'L'}),] print '--'*30 #1.打印效果 pprint.pprint (data) ''' ----…
前不久,我写了一篇文章回顾 Python 中 print 的发展历史 ,提到了两条发展线索: 明线:早期的 print 语句带有 C 和 Shell 的影子,是个应用程序级的 statement,在最初十几年里,经历过 PEP-214 和 PEP-259 的改进:再到 2009 年的大版本 3.0,由语句改成了 print() 函数,还在 3.3 版本,做过一次功能增强,最终上升成为一等的内置函数. 暗线:介绍了 print 的竞争对手们,像传统的日志模块 logging.调试模块 pdb.主流…
将一个矩阵(二维数组)按对角线向右进行打印.(搜了一下发现好像是美团某次面试要求半小时手撕的题)Example:Input:[[1,2,3,4],[5,1,2,3],[9,5,1,2]]Output:[[4],[3, 3],[2, 2, 2],[1, 1, 1],[5, 5],[9]] class Solution(): def print_matix(self,list): print(list) rows = len(list) cols = len(list[0]) result = []…
就这一句: import this 输出: The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readab…
p::extract<char const *>(p::str(py_variable))…
import sys def pstack(depth = 0): frame = sys._getframe(depth) cnt = 0 while frame: print "###", cnt, frame.f_code.co_name, frame.f_code.co_filename, frame.f_lineno frame = frame.f_back cnt = cnt + 1 def test(): pstack(0) print "-"*20…
使用 pprint 模块 pprint 模块( pretty printer ) 用于打印 Python 数据结构. 当你在命令行下打印特定数据结构时你会发现它很有用(输出格式比较整齐, 便于阅读). import json from pprint import pprint with open(r'C:\Temp\aa.json','r') as f: loadfile=json.load(f) pprint(loadfile) print(loadfile) out ============…
目录 最简单的打印 打印数字 打印字符 字符串的格式化输出 python中让输出不换行 以下的都是在Python3.X环境下的 使用 input 函数接收用户的输入,返回的是 str 字符串 最简单的打印 >>print("hello,word!") hello,word! 打印数字 >>a=5 >>b=6 >>print(a) >>print(a,b) >>print(a+b) 5 5 6 11 打印字符 使用逗…