格式化输出python与说明符不起作用

时间:2015-03-03 22:14:35

标签: python format

print 'there are %d vowels and they are %s' % 2,'oo'

为什么这不起作用?错误是关于字符串格式化没有足够的参数。我真的不明白...... Plz帮忙〜

1 个答案:

答案 0 :(得分:3)

您需要一个iterable来提供格式化选项:

print 'there are %d vowels and they are %s' % (2,'oo')