I want to print some values using str.format. However, I am getting the first value repeated, which I do not understand. Any help will be appreciated.
for tel in ['T1', 'T2', 'T3', 'T4']:
print(tel+':{0:.2f}, {0:.2f}, {0:.2f}'.format(0.56, 0.12, 0.25))