参照しているフォーマッターを持つ新しいフォーマット式を使用します
print "{:%}".format(0.1)
#10.000000%
整数部分だけが必要な場合は、精度仕様を使用できます
print "{:.0%}".format(0.1)
#10%
のドキュメントを参照してください
http://docs.python.org/2/library/string#formatspec
少し拡張すると、新しいフォーマット指定子は古いフォーマット指定子よりも実際に強力です。まず第一に、それは順序または名前でパラメータを呼び出すのは本当に簡単です
"play the {instrument} all {moment}, even if my {instrument} is old".format(moment='day', instrument='guitar')
#'play the guitar all day, even if my guitar is old'
次に、ドキュメントに示されているように、オブジェクトのプロパティにアクセスできます。
"the real component is {0.real} and the imaginary one is {0.imag}".format(3+4j)
#'the real component is 3.0 and the imaginary one is 4.0'
これ以外にもたくさんありますが、すべてドキュメントに記載されています。これは非常に明確です。