[Developmentenvironment]
python 3.6.2
qPython 1.2.2
numpy 1.13.1
1).There is the table defined by the following query and the table has thefollowing record.
[query]
Date:(NO:int$();Date:
date$();time:`time$())
[record]
NO Date time
1 2017.09.04 08:07:00.000
2).On python, I tried to do the following procedures to the table as described aboveby using qpython, printed the result andI happened to see the following result.
[procedures]
date = q(‘select from Date’)
print(date)
print(date.dtype)
[result]
[( 1, 6456, 29220000)]
(numpy.record, [(‘NO’, ‘<i8’), (‘Date’, ‘<i4’), (‘time’, ‘<i4’)])
3).I expected the following result, but I got the result above.
[My expectation]
[( 1, 2017.09.04, 08:07:00.000)]
4). What should I do to print theDate and time data normally, I mean not 6456, 29220000 but 2017.09.04,08:07:00.000, on python by using qpython?