I have a array something like this
my_array = ['MY_INVOICE', 'YOUR_INVOICE']
and when I convert it to a string using like this
final_string += ','.join(my_array)
it is giving something like this
MY_INVOICE,YOUR_INVOICE
while I want something like this
"MY_INVOICE", "YOUR_INVOICE" (like with commas on it) tried few solutions but not working
MY_INVOICE,YOUR_INVOICEdoes have a comma. Do you mean quotes which is the"symbol?jsonmodule."? These are double quote marks.