I\'m very new to python. I need a simple and clear script to add quotes to every list elements. Let me explain more. Here is the my code.
parameters = [\'a\'
In general (ignoring SQL)
In [3]: print(' '.join('"%s"' % x for x in ['a', 'b'])) "a" "b"