The server script stores a dictionary to relate sizes of goods to prices. Use for example
sizes = { 'small':12.3, 'medium':22.1, 'large':31.8 }.
The client prompts the user for a size: small, medium, or large;
and sends the size to the server.
The server receives a size, looks up the size in its dictionary
and sends the corresponding price to the client.
The client prints the price in the %.2f format.
Answer: quiz11b_client.py and quiz11b_server.py.