[Python-ideas] Format character to center strings

Rob Cliffe rob.cliffe at btinternet.com
Sat Mar 28 15:56:02 CET 2015


As a string can be left-justified (within a given width) using e.g.
     '%-20s' % s
and right-justified using
     '%+20s' % s    #    or    '%20s' % s
why not allow a string to be centered using
     '%=20s' %s

Rob Cliffe


More information about the Python-ideas mailing list