1

私はしばしばこれをやっていることに気づきます:

myvariable = 'whatever'
another = 'something else'

print '{myvariable} {another}'.format(
    myvariable=myvariable,
    another=another
)

この繰り返しの方法でキーワード引数に名前を付ける必要がない方法はありますか? 私はこれらの線に沿って何かを考えています:

format_vars = [myvariable, another]

print '{myvariable} {another}'.format(format_vars)
4

2 に答える 2