Multiple key-value pairs, each representing a person's name and food, are read from input and added to order_records1. First, merge order_records2 with order_records1. Then, clear order_records1.

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter6: Sub And Function Procedures
Section: Chapter Questions
Problem 1MQ3
icon
Related questions
Question

Multiple key-value pairs, each representing a person's name and food, are read from input and added to order_records1. First, merge order_records2 with order_records1. Then, clear order_records1.

1 order_records1 = {}
2 order_records2 = {'Zoe': 'lime'}
3 ref_record1 = order_records1 # For testing purposes, ref_record1 references order_records1
4 ref_record2 = order_records2 # For testing purposes, ref_record2 references order_records2
5
6 input line = input()
7 while input_line != 'exit':
name, food = input_line.split()
order_records1[name] = food
8
9
10
input line input()
11
12
Your code goes here
13
14 print('Order records 1:')
15 print(order_records1)
16 print('Order records 2:')
17 print(order_records2)
Transcribed Image Text:1 order_records1 = {} 2 order_records2 = {'Zoe': 'lime'} 3 ref_record1 = order_records1 # For testing purposes, ref_record1 references order_records1 4 ref_record2 = order_records2 # For testing purposes, ref_record2 references order_records2 5 6 input line = input() 7 while input_line != 'exit': name, food = input_line.split() order_records1[name] = food 8 9 10 input line input() 11 12 Your code goes here 13 14 print('Order records 1:') 15 print(order_records1) 16 print('Order records 2:') 17 print(order_records2)
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Types of trees
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning