Thanks for help to a beginner.
script23
import time
import datetime
start_time = datetime.datetime.now()
time.sleep(0.14)
end_time = datetime.datetime.now()
datetime.timedelta = end_time - start_time
print(datetime.timedelta) # works, prints 0:00:0.141000
print(datetime.timedelta.seconds) # prints 0
print(datetime.timedelta.milliseconds) # fails
< object has no attribute milliseconds >
How do I get the 0.141000 out of that or any time object ?
On line docs are arcane to a novice.
--
http://mail.python.org/mailman/listinfo/python-list