如何在python中乘以变量时添加空格

时间:2013-09-22 00:07:05

标签: python printing

这是我的代码

print("Type in another set of words")
    x = input()
    print("Now type in how many times you want it to appear (WHOLE NUMBERS ONLY!)")
    c = int(input())
    print(x * c)

我想在每次单词增加之间添加一个空格。这可能吗?

2 个答案:

答案 0 :(得分:2)

使用str.join在一系列字符串之间放置一个空格:

print(' '.join([x] * c))

答案 1 :(得分:2)

您可以使用字符串格式:

print('{} '.format(x)*c)