Define a formatter that takes a list and prints it the way you want it. Then apply it to the dataframe:
formatter = lambda l: ', '.join('{:0.2f}'.format(i) for i in l)
df.style.format(formatter)
Should print out what you want:
Values
0 0.12, 0.00, 0.00
1 0.00, 0.00, 0.00