Print Formatted Text Using the sep Argument

Using the print() function and the sep argument set to '#' print the following text: 'summer#time#holiday'

Solution

Solution 1

print('summer', 'time', 'holiday', sep='#')