i have this array
A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
i would like to convert it in to a string like this
1,2,3,4,5,6,7,8,9
i have tried doing the below code but it didnt do what i wanted to
A = str(A).strip('[]')
output i get for this is
1, 2, 3], [4, 5, 6], [7, 8, 9
note: i would like to do this without any external libraries
so basically converting 2d array into strings separated by commas