On 9 October 2017 at 17:22, John Black <jbl...@nopam.com> 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

Reply via email to