print('{a[0] + a[1]}'.format(a=[0, 1]))
print('{a[0]} + {a[1]}'.format(a=[0, 1]))
Used when a PEP 3101 format string is invalid.