Print Formatted Text Using the sep Argument

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

Solutions

Solution: 1

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