Python datetime.now() gives me current time including milliseconds like this:
2014-08-22 19:23:40.630000
How do I convert the above datetime object to a string that includes the milliseconds?
I looked into time.strftime()
but it does not provide an option for milliseconds.
Ideas?
Thanks.