Python - String String Join

Introduction

The following code uses TEST as the delimiter to join list together.

Demo

print( 'TEST'.join(['eggs', 'sausage', 'ham', 'toast']) )

Result