Python String Format_Map
characters = {
'Man':'Aragorn',
'Dwarf':'Gimli'
}
print('{Man} is a friend of {Dwarf}'.format(**characters))
Real Rabbit