=+ for strings

James Smith bjlockie021 at gmail.com
Sun May 3 22:38:06 EDT 2020


I tried:
    dt=+"{:02d}".format(day)
but I got:
    dt=+"{:02d}".format(day)
TypeError: bad operand type for unary +: 'str'

This works:
    dt=dt+"{:02d}".format(day)

Why can't I do the shortcut on strings?


More information about the Python-list mailing list