On 9 October 2017 at 17:22, John Black <[email protected]> wrote: > I want sep="" to be the default without having to specify it every time I > call print. Is that possible?
def myprint(*args, **kw):
print(*args, sep="", **kw)
If you want, assign print=myprint.
Paul
--
https://mail.python.org/mailman/listinfo/python-list
