できます
string="%s"*3
print string %(var1,var2,var3)
しかし、vars を別の変数に入れることができないため、アプリ ロジックを使用してオンザフライで vars のリストを作成できます。例えば
if condition:
add a new %s to string variable
vars.append(newvar)
else:
remove one %s from string
vars.pop()
print string with placeholders
python 2.6 でこれを行う方法についてのアイデアはありますか?