Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
string.Formatterを使用すると、カスタム変換タイプを使用して新しいスタイルの書式設定を拡張できます。
これは、古い"%"スタイルのフォーマット文字列でも可能ですか? これのためのライブラリはありますか?
"%"
多分
class CustomFormat(object): def __init__(self, obj): self.Object = obj def __str__(self): return str(self.Object).upper() # your magic goes here... print "abc%s" % customFormat("hello") # abcHELLO