So I have a feature class in a GDB that contains time data that I wish to carry out calculations through arcpy. This data was entered from a string to a datetime format into the featureclass through a script that handles a special type of ASCII file.
The output format of this tuple takes the form of the following:
(datetime.datetime(1899, 12, 30, 13, 59, 18),)The help pages haven't been terribly useful. I can't print the information inside the tuple, nor can I access like an array. What I seek to do is get at the datetime.datetime object inside the tuple so that I may carry out my analysis. Has anyone run into this problem before?
أكثر...
The output format of this tuple takes the form of the following:
(datetime.datetime(1899, 12, 30, 13, 59, 18),)The help pages haven't been terribly useful. I can't print the information inside the tuple, nor can I access like an array. What I seek to do is get at the datetime.datetime object inside the tuple so that I may carry out my analysis. Has anyone run into this problem before?
أكثر...