I have an array consisting of another array:
An example of my array with two arrays inside:
myArray = [(element1, element2, element3)], [(element4, element5, element6)] is just an example showing that myArray has two arrays (these elements are strings)
Now I want to write these elements to a txt file as follows:
element1#element2#element3;element4#element5#element6;
What is the code to create this line for writing in a txt file?
source share