Would the following change the existing code be more efficient? ```python >>> for name in instruments.keys(): ... print('{} - {}'.format(name, ... instruments[name])) ``` Or ```python >>> for name, instrument in instruments.items(): ... print('{} - {}'.format(name, ... instrument)) ```