I am using the following to print out timestamps:
strftime('%d-%m-%Y %H:%M:%S.%f')
However I want to round the microseconds to two decimal places rather than print out to six decimal places. Is there an easier way to achieve this rather than 'unpacking' all the time elements, formatting and rounding the microseconds to 2 decimals, and formatting a new 'print string'?