はじめに
Python はバージョン 2.6 で新しい文字列書式設定メソッド str.format()
を追加しました。基本的な構文は、前の % を {} と : に置き換えます。 str.format()
。它的基本语法是通过 {} 和 : 来代替以前的 %.。
格式化时的占位符语法:
replacement_field ::= "{" [field_name] ["!" conversion] [":" format_spec] "}"
“映射”规则
通过位置
str.format()
可以接受不限个参数,位置可以不按顺序:
>>> "{0} {1}".format("hello", "world") 'hello world' >>> "{} {}".format("hello", "world") 'hello world' >>> "{1} {0} {1}".format("hello", "world") 'world hello world'
通过关键字参数
使用关键参数时字符串中需要提供参数名:
>>> "I am {name}, age is {age}".format(name="huoty", age=18) 'I am huoty, age is 18' >>> user = {"name": "huoty", "age": 18} >>> "I am {name}, age is {age}".format(**user) 'I am huoty, age is 18'
通过对象属性
str.format()
フォーマット時のプレースホルダー構文:
>>> class User(object): ... def __init__(self, name, age): ... self.name = name ... self.age = age ... ... def __str__(self): ... return "{self.name}({self.age})".format(self=self) ... ... def __repr__(self): ... return self.__str__() ... ... >>> user = User("huoty", 18) >>> user huoty(18) >>> "I am {user.name}, age is {user.age}".format(user=user) 'I am huoty, age is 18'位置による
str.format()
は受け入れられます限界
>>> names, ages = ["huoty", "esenich", "anan"], [18, 16, 8] >>> "I am {0[0]}, age is {1[2]}".format(names, ages) 'I am huoty, age is 8' >>> users = {"names": ["huoty", "esenich", "anan"], "ages": [18, 16, 8]} >>> "I am {names[0]}, age is {ages[0]}".format(**users)キーワードパラメータごと
キーパラメータを使用する場合、パラメータ名を文字列で指定する必要があります:
conversion ::= "r" | "s" | "a"
オブジェクト属性による str.format()
ユーザー属性を直接読み取ることができます:
>>> "repr() shows quotes: {!r}; str() doesn't: {!s}".format('test1', 'test2')
"repr() shows quotes: 'test1'; str() doesn't: test2"
フォーマットする必要がある文字列:
>>> "{:>8}".format("181716")
' 181716'
>>> "{:0>8}".format("181716")
'00181716'
>>> "{:->8}".format("181716")
'--181716'
>>> "{:-<8}".format("181716")
'181716--'
>>> "{:-^8}".format("181716")
'-181716-'
>>> "{:-<25}>".format("Here ")
'Here -------------------->'
文字列の変換タイプを指定できます:
>>> "[ {:.2f} ]".format(321.33345) '[ 321.33 ]' >>> "[ {:.1f} ]".format(321.33345) '[ 321.3 ]' >>> "[ {:.4f} ]".format(321.33345) '[ 321.3335 ]' >>> "[ {:.4f} ]".format(321) '[ 321.0000 ]'
ここで、「!r」は repr() に対応します。 !s" は str() に対応し、"! a" は ascii() に対応します。 例:
>>> '{:+f}; {:+f}'.format(3.141592657, -3.141592657)
'+3.141593; -3.141593'
>>> '{: f}; {: f}'.format(3.141592657, -3.141592657)
' 3.141593; -3.141593'
>>> '{:f}; {:f}'.format(3.141592657, -3.141592657)
'3.141593; -3.141593'
>>> '{:-f}; {:-f}'.format(3.141592657, -3.141592657)
'3.141593; -3.141593'
>>> '{:+.4f}; {:+.4f}'.format(3.141592657, -3.141592657)
'+3.1416; -3.1416'
フォーマット修飾子
パディングと位置合わせ
パディングは、多くの場合、位置合わせと一緒に使用されます。 ^、f539a70d3ea090bac4faa80192f58ccc はそれぞれ中央揃え、左揃え、右揃えで、その後に width が続き、その後の文字は 1 文字だけで埋められます。指定しない場合は、デフォルトでスペースで埋められます。
>>> "int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}".format(18) 'int: 18; hex: 12; oct: 22; bin: 10010' >>> "int: {0:d}; hex: {0:#x}; oct: {0:#o}; bin: {0:#b}".format(18) 'int: 18; hex: 0x12; oct: 0o22; bin: 0b10010'
浮動小数点精度
f を使用して浮動小数点型を表すと、その前に精度制御を追加できます:
>>> '{:,}'.format(1234567890) '1,234,567,890'
浮動小数点の符号を指定することもできます数値、+ は正の数値の前に表示され、- は負の数値の前に表示されます。(スペース) は、正の数値の前にスペースを追加し、負の数値の前に - を追加することを意味します ({:f}):
>>> "progress: {:.2%}".format(19.88/22)
'progress: 90.36%'
type ::= "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"千の位の区切り文字
千の位の区切り文字として「,」を使用できます:
>>> '{0:{fill}{align}16}'.format("hello", fill='*', align='^') '*****hello******' >>> >>> for num in range(5,12): ... for base in "dXob": ... print("{0:{width}{base}}".format(num, base=base, width=5), end=' ') ... print() ... ... 5 5 5 101 6 6 6 110 7 7 7 111 8 8 10 1000 9 9 11 1001 10 A 12 1010 11 B 13 1011パーセント表示
>>> email_f = "Your email address was {email}".format
>>> print(email_f(email="suodhuoty@gmail.com"))
Your email address was sudohuoty@gmail.com
実際、形式はさらに多くの型シンボルもサポートしています:
>>> " The {} set is often represented as { {0} } ".format("empty") ' The empty set is often represented as {0} '🎜その他のテクニック🎜🎜🎜🎜🎜プレースホルダーのネスト🎜🎜🎜 場合によってはプレースホルダーのネストが依然として役立つことがあります:🎜 🎜 🎜りー🎜🎜🎜🎜中古関数として🎜🎜🎜最初に書式パラメータを指定することはできませんが、不要な場所で関数として呼び出します: 🎜🎜🎜rrreee🎜🎜🎜🎜中括弧をエスケープ🎜🎜🎜文字内の場合 中括弧を使用する必要がある場合文字列の場合は、中かっこを使用してエスケープできます: 🎜🎜🎜rrreee🎜🎜🎜 Python での文字列フォーマット str.format の詳細と関連記事については、PHP 中国語 Web サイトに注目してください。 🎜