Im trying to get data in pylon to use in jquery autocomplete, the librarary i\'m using for autocomplete it requires this format
abc pqr xyz >
abc pqr xyz
I am not exactly sure what you want, but you may try:
nested_list = [ ["abc"], ["pqr"], ["xyz"] ] data = "\n".join( (item[0] for item in nested_list) )
This will convert your list of lists into a string separated by newline characters.