最佳答案
我想使用 pprint 的输出来显示一个复杂的数据结构,但是我想使用日志模块而不是 stdout 来输出它。
ds = [{'hello': 'there'}]
logging.debug( pprint.pprint(ds) ) # outputs as STDOUT