How to repeat a string with spaces?

string = 'Hello There'
print ' '.join([string[:5]] * 2)

Leave a Comment