print('{one} {}'.format('hello', 'world'))
print('{one} {}'.format('world', one='hello'))
Used when a format string that uses named conversion specifiers is used with a dictionary that doesn’t contain all the keys required by the format string.