How to repeat a string with spaces? July 23, 2023 by Tarik string = 'Hello There' print ' '.join([string[:5]] * 2)