Print Formatted Text Using the sep Argument

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

الحل

الحل 1

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