In article <[email protected]>, [email protected] wrote:
> > In [1]: import time > > In [2]: time.time() > > Out[2]: 1388085670.1567955 > > OK i did what you said but I am only getting 2 decimal places. > Why is this and what can I do to get the millisecond? What operating system are you on? The Python time routines can only return as much precision as the operating system makes available. -- https://mail.python.org/mailman/listinfo/python-list
