I have a list of characters; is there a way to print this list such that the list prints without the default square brackets and commas?
For instance:
# this is my list
list = ['a', 'b', 'c']
# this is what I want the output to be
>>>'abc'
I have a list of characters; is there a way to print this list such that the list prints without the default square brackets and commas?
For instance:
# this is my list
list = ['a', 'b', 'c']
# this is what I want the output to be
>>>'abc'