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