这是我的代码
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)
我想在每次乘以单词之间添加一个空格。那可能吗?
使用str.join在字符串序列之间放置一个空格:
print(' '.join([x] * c))
您可以使用字符串格式:
print('{} '.format(x)*c)