差分
このページの2つのバージョン間の差分を表示します。
| 両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
| python:f-strings [2020/05/31 16:55] – ともやん | python:f-strings [2023/05/08 09:33] (現在) – ともやん | ||
|---|---|---|---|
| 行 1: | 行 1: | ||
| - | < | ||
| - | < | ||
| - | #result pre, #mincode pre { | ||
| - | overflow: hidden; | ||
| - | font-size: 10px; | ||
| - | } | ||
| - | # | ||
| - | height: 250px; | ||
| - | overflow: scroll; | ||
| - | overflow-x: hidden; | ||
| - | font-size: 10px; | ||
| - | } | ||
| - | #mintbl table { | ||
| - | font-size: 12px; | ||
| - | } | ||
| - | #mintbl td pre { | ||
| - | margin: 0; | ||
| - | } | ||
| - | #img_long { | ||
| - | height: 400px; | ||
| - | overflow: scroll; | ||
| - | overflow-x: hidden; | ||
| - | } | ||
| - | .dokuwiki .plugin_wrap table { | ||
| - | width: auto; | ||
| - | } | ||
| - | #logo { | ||
| - | background-color: | ||
| - | padding: 10px; | ||
| - | width: fit-content; | ||
| - | } | ||
| - | #logo p { | ||
| - | margin: 0; | ||
| - | } | ||
| - | </ | ||
| - | </ | ||
| ====== フォーマット済み文字列リテラル (f-strings) ====== | ====== フォーマット済み文字列リテラル (f-strings) ====== | ||
| - | < | + | < |
| <code python> | <code python> | ||
| >>> | >>> | ||
| 行 74: | 行 38: | ||
| </ | </ | ||
| ===== 書式編集のパフォーマンス比較 ===== | ===== 書式編集のパフォーマンス比較 ===== | ||
| - | < | + | < |
| <code python> | <code python> | ||
| + | $ python | ||
| + | Python 3.11.3 (main, Apr 5 2023, 00:00:00) [GCC 13.0.1 20230401 (Red Hat 13.0.1-0)] on linux | ||
| + | Type " | ||
| + | >>> | ||
| + | >>> | ||
| + | ... f' | ||
| + | 2.247387803014135 | ||
| + | >>> | ||
| + | ... '%s is %s.' % (name, age)""", | ||
| + | 2.269912829011446 | ||
| + | >>> | ||
| + | ... '{} is {}.' | ||
| + | 4.426570633018855 | ||
| + | >>> | ||
| + | ... '{0} is {1}.' | ||
| + | 5.005730772012612 | ||
| + | >>> | ||
| + | |||
| $ python | $ python | ||
| Python 3.8.3 (tags/ | Python 3.8.3 (tags/ | ||