Re: [Tutor] stfftime question

2006-07-04 Thread Tom Tucker
I found a temporary solution. The goal in the end was to compare two dates/times and retrieve the millisecond delta between the two. Work around # import datetime import time t1 = datetime.datetime(1973,9,4,04,3,25,453) t2 = datetime.datetime(1973,9,4,04,3,25,553) t1tuple =

Re: [Tutor] stfftime question

2006-07-04 Thread Kent Johnson
Tom Tucker wrote: I found a temporary solution. The goal in the end was to compare two dates/times and retrieve the millisecond delta between the two. Work around # import datetime import time t1 = datetime.datetime(1973,9,4,04,3,25,453) t2 =