Input format
The program receives a list of dictionaries where each dictionary presents information about one client. Dictionary structure:
rn
{
& nbsp; & nbsp; "ID": int, & nbsp;# Unique client identifier
& nbsp; & nbsp; "Name": str, # client name
& nbsp; & nbsp; "Age": int, & nbsp;# the age of the client
& nbsp; & nbsp; "Gender": str, # the client of the client ("m" - male, "g" - female)
& nbsp; & nbsp; "Insurance_type": str, # insurance type (for example, "ok", "pd", "casco")
& nbsp; & nbsp; "Coverage_amount": int # Support of insurance coating
}
rn
data "> data"> data "> data"> They are introduced through the console line, first the number of customers is indicated, and then the information on each client in the python dictionary format
rn
Output format
The program should display the report in the following format:
rn
The youngest client: [name]
the oldest client: [name]
average age of customers: [average age]
number of male customers: [quantity]
number of women's customers: [quantity]
the type of insurance, [type of insurance]
the total amount Insurance coating: [sum]
Hint
There will be no clue here, decide for yourself!