Build a simple phone book. Given a list of names and numbers, create a dictionary that maps names to numbers.
For example, if given: - Alice, - - Bob, - You should be able to look up phone_book["Alice"] and get "555-1234". Before reading on, think: how would you add each name-number pair to a dictionary?