标签: python format
print 'there are %d vowels and they are %s' % 2,'oo'
为什么这不起作用?错误是关于字符串格式化没有足够的参数。我真的不明白...... Plz帮忙〜
答案 0 :(得分:3)
您需要一个iterable来提供格式化选项:
print 'there are %d vowels and they are %s' % (2,'oo')