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.
このフォーマット文字列の代わりに、オンザフライで計算して渡し40た変数に設定するにはどうすればよいですか。temp40
40
temp
{:<40}.format('aa')
このようなものが動作するはずです:
>>> width = 40 >>> '{0:<{width}}'.format('aa', width=width) 'aa '