You can use Python's datetime
module to get the current time and then access the microsecond
attribute to get the time in microseconds. To get the time in tenths of a second, you can divide the microseconds by 100000.
Here's an example:
main.py168 chars7 lines
This will give you the current time in tenths of a second.
gistlibby LogSnag