I want to display a 2D list without brackets, commas, or any stuffs. I printed the content of the list using the following code:
print(ncA_string[a][0],ncA_string[a][1],ncA_string[a][2],ncA_string[a][3])
Unfortunately, however, it is showing the commas, and brackets. Here's the picture of the output
I wanna display it like this: ((((((ab)c)d)e)
I'm new to using python and I've tried using the join map but i couldn't understand it yet.
Can anyone teach me how to??
Thank you so much :))