I am newbie to python. I have a sequence and I am able to print it using join method and able to print the length of the sequence separately. I am not able to print
join
seq = ('a', 'b', 'c') joined = '-'.join(seq) print('The join output is:', joined, 'The length is:', len(seq))
or
print('The join output is: ' + joined + ' The length is: ' + str(len(seq)))