when I run this code it keeps putting in (
and surrounding '
marks.
for column in dataTable.Columns:
a=a,column.RowValues.GetFormattedValue(row)
a
keeps printing out as this
(('10/13/2015'),'Oranges')
How can I make it just set a
=to this
10/13/2015Oranges
Data Table setup
Date |Fruit
10/13/2015 |Oranges
10/12/2015 |Apples