Here is my code
print(\"Type in another set of words\") x = input() print(\"Now type in how many times you want it to appear (WHOLE NUMBERS ONLY!)\")
Use str.join to place a space between a sequence of strings:
print(' '.join([x] * c))
You can use string formatting:
print('{} '.format(x)*c)