A little question about Formats

I’ve searched for a while on the roblox guide and on the internet but can’t find nothing

I just need the format to print “01.0”

I know there is %0.1f to print 1.0 and %0.2i to print 01 but can’t find nothing that can do both
anyone who knows how to do this?

print(string.format("%04.1f", 1)) → 01.0

Thank you so much! :smiley:
It was easier than i thought