Simplefunction help (show time to tenth place)

Hey!
I’m trying to get a timer to show the time to the tenths place.
This is what I have so far, it rounds it to the whole number.
timer = simpleFunction("\operatorname{floor}(x)").evaluateAt(media.time)

And this gives me a time in what I call “centiseconds”
timer = simpleFunction("\operatorname{floor}(10x)").evaluateAt(media.time)

I need the time to show as 6.4 seconds.
Any suggestions?

I’m confused. I see the same code for whole number and centiseconds.

I edited my previous post-there’s now 10x on the centi-seconds. Thanks!

Oh! Take your expression for centiseconds and divide by 10 (i.e. outside of the floor).