2020-12-17から1日間の記事一覧

string Template クラス

% による文字列のフォーマット出力を書くことが多いが、 string の Templateクラスの機能も 忘れてはならない。テンプレートは、$文字接頭辞 from string import Template t = Template('$a is $b : $c') substitute( テンプレートの対象名=値 、、、) fr…