CommentApr 26, 20171
A cool thing I found that you can with .format is to prepare a string for later expansion: prepared = 'Hello {}'.format prepared('world') 'Hello world' If you want to do that using %, I suppose you would need at least a lambda.