2

这是我的代码

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)

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

4

2 回答 2

4

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

print(' '.join([x] * c))
于 2013-09-22T00:09:08.630 回答
3

您可以使用字符串格式:

print('{} '.format(x)*c)
于 2013-09-22T00:09:16.307 回答