使用python打印相同的字符串x次

时间:2013-06-24 12:17:12

标签: python if-statement python-2.7 count

Hello Stack Overflow,

对于这个问题,很可能有一个非常简单的解决方案。

    count1 = 12
    count2 = 15
    countdifference = count2 - count1

    if countdifference > 0:
        print selection

所以上面的代码是自解释的,但是如何修改此代码以打印选择x次,其中x = countdiffernce?在这种情况下,它将是15-12 = 3,然后它将打印选择3次。

任何帮助或意见将不胜感激,亲切的问候AEA

2 个答案:

答案 0 :(得分:5)

print str(selection) * countdifference

for ii in xrange(countdifference):
    print selection

答案 1 :(得分:2)

您可以使用乘数运算符:

print selection * countdifference

在python中,当你有一个字符串并且你将该字符串相乘时,它会返回另一个字符串,如下所示:

>>> test = "message"
>>> print test * 3
messagemessagemessage