1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
zavuch27 [327]
2 years ago
9

The following program includes fictional sets of the top 10 male and female baby names for the current year. Write a program tha

t creates: A set all_names that contains all of the top 10 male and all of the top 10 female names. A set neutral_names that contains only names found in both male_names and female_names. A set specific_names that contains only gender specific names. Sample output for all_names: {'Michael', 'Henry', 'Jayden', 'Bailey', 'Lucas', 'Chuck', 'Aiden', 'Khloe', 'Elizabeth', 'Maria', 'Veronica', 'Meghan', 'John', 'Samuel', 'Britney', 'Charlie', 'Kim'}

Engineering
2 answers:
yuradex [85]2 years ago
4 0

Answer:

Please see attachment

Explanation:

Please see attachment

otez555 [7]2 years ago
3 0

Answer:

Define Variables and Use List methods to do the following

Explanation:

#<em>Conjoins two lists together</em>

all_names = male_names.union(female_names)

#<em>Finds the names that appear in both lists, just returns those</em>

neutral_names = male_names.intersection(female_names)

#<em>Returns names that are NOT in both lists</em>

specific_names = male_names.symmetric_difference(female_names)

You might be interested in
Write an application that solicits and inputs three integers from the user and then displays the sum, average, product, smallest
Ganezh [65]

Answer:

3423=6^H

Explanation:

6 0
3 years ago
A cylinder with a frictionless piston contains 0.05 m3 of air at 60kPa. The linear spring holding the piston is in tension. The
AleksAgata [21]

Answer:

18 kJ

Explanation:

Given:

Initial volume of air = 0.05 m³

Initial pressure = 60 kPa

Final volume = 0.2 m³

Final pressure = 180 kPa

Now,

the Work done by air will be calculated as:

Work Done = Average pressure × Change in volume

thus,

Average pressure = \frac{60+180}{2}  = 120 kPa

and,

Change in volume = Final volume - Initial Volume = 0.2 - 0.05 = 0.15 m³

Therefore,

the work done = 120 × 0.15 = 18 kJ

4 0
3 years ago
THIS SIGN MEANS: A. The right lane will end ahead B. The highway will be divided ahead C. Less space between lanes ahead
hodyreva [135]
B.) the highway will be divided ahead
7 0
3 years ago
A manufacturer provides a warranty against failure of a carbon steel product within the first 30 days after sale. Out of 1000 so
irina1246 [14]
Answer: idk sorry we both on the same thing
7 0
3 years ago
What is computer software​
barxatty [35]
Sometimes for a phone or computer
5 0
3 years ago
Other questions:
  • A hollow aluminum sphere, with an electrical heater in the center, is used in tests to determine the thermal conductivity of ins
    14·2 answers
  • 13. Write a function which is passed two strings. The function creates a new string from the two original strings by copying one
    13·1 answer
  • Ok I need a new laptop but I'm not sure which one. The Surface laptop 3 is better in many fields like the camera, speaker, audio
    14·1 answer
  • A common process for increasing the moisture content of air is to bubble it through a column of water. The air bubbles are assum
    13·1 answer
  • Most of the work that engineers do with fluids occurs in nature. True False
    6·1 answer
  • Which step in the engineering design phase is requiring concussion prevention from blows up to 40 mph an example of?
    6·1 answer
  • An HVAC contracting company sent out three work crews to complete three
    10·1 answer
  • HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    11·1 answer
  • An interrupted line of sight means changes in ......and .... are necessary for re-establishing a ......... to the driver’s path
    7·1 answer
  • You may wonder who the rest goes
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!