I have this datetime 2011-07-02 03:03:32.793

To deal with the millisecond issue with python 2.5 version(mentioned here), I try to truncate it & convert it date time as:

import_transform: 'lambda x: x[:18]'
import_transform: transform.import_date_time('%Y-%m-%d %H:%M:%S')

How can I write these two import_transform in one line?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can do this by writing a lambda function that does both together:

import-transform: lambda x: transform.import_date_time('%Y-%m-%d %H:%M:%S')(x[:18])

Note the chained function calls - transform.import_date_time returns a function, which you're then calling.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.