DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Python String Formating Via % Operator
// description of your code here
# format % 2 %d : '2' %5d : ' 2' %-5d : '2 ' %05d : '00002' %.2e : '2.00e+000' %.2f : '2.00' %s : string, applying str() %-20s : left-adjust






Comments
Snippets Manager replied on Thu, 2012/02/23 - 2:38pm