print('{one} {two}'.format(one='hello'))
print('{one} {two}'.format(one='hello', two='world'))
Used when a PEP 3101 format string that uses named fields doesn’t receive one or more required keywords.