Python is there a way to align my text along and truncate float at the same time

I’m trying to find out if in the format function if I can convert my float to 2 decimal points and have it align in the one line. In the example below I want to align the last element, i’m wondering if I can do something like print("{0:.2f} {1:<60} {{2:.2f}:<8} {3:.2f}".format(item[0], item[1], item[2], item[3])) I’m aware I can use the round function on the 2nd last element and then align it.