please help me. I have two-dimensional array example :
self.history = [['23295', u'0.0500', u'0.0700', u'0.0600', u'0.0600'],['23295', u'0.0500', u'0.0700', u'0.0600', u'0.0600']]
i try parsing him and get string but have syntax error, please advice.
for i in range(int(cac)):
returning = returning + "\""+str(date_arr[i])+","+ str(self.history[0 for x in range(len(self.history))][i])+"+"
in output i need have somethings like :
"somedate,'23295','23295'" + "somedate,u'0.0500',u'0.0500'" + "somedate,u'0.0700',u'0.0700'"...
[0 for x in range(len(self.history))]