Ahead Warning! A Python newbie and quite a spoiled question ahead!
Is there a way to shorthand:
"{} blabla ... {}".format(x, y)
Into something like:
"{} blabla ... {}" % (x, y)
Using operator overloading like syntax or otherwise?
Not talking about old style string formatting which took typed %s ...