python打印时如何换行_python-如何在打印语句后取消换行符?

博主分享了如何通过继承Python的PrettyPrinter类来自定义打印功能,以满足在打印对象后添加逗号的需求。他们创建了一个名为CommaEndingPrettyPrinter的类,并重写了pprint方法,使得在打印后添加了逗号和换行符。此外,还提供了一个名为comma_ending_prettyprint的函数,方便调用。示例代码展示了如何使用这个新功能来打印对象。
摘要由CSDN通过智能技术生成

因为python 3 print()函数允许end =“”定义,所以可以满足大多数问题。

就我而言,我想使用PrettyPrint并感到沮丧,因为该模块未进行类似的更新。 所以我做到了我想要的:

from pprint import PrettyPrinter

class CommaEndingPrettyPrinter(PrettyPrinter):

def pprint(self, object):

self._format(object, self._stream, 0, 0, {}, 0)

# this is where to tell it what you want instead of the default "\n"

self._stream.write(",\n")

def comma_ending_prettyprint(object, stream=None, indent=1, width=80, depth=None):

"""Pretty-print a Python object to a stream [default is sys.stdout] with a comma at the end."""

printer = CommaEndingPrettyPrinter(

stream=stream, indent=indent, width=width, depth=depth)

printer.pprint(object)

现在,当我这样做时:

comma_ending_prettyprint(row, stream=outfile)

我得到了我想要的(代替您想要的-您的里程可能会有所不同)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值