subject

Male_names = { 'john', 'bailey', 'charlie', 'chuck', 'michael', 'samuel', 'jayden', 'aiden', 'henry', 'lucas' } female_names = { 'elizabeth', 'meghan', 'kim', 'khloe', 'bailey', 'jayden', 'aiden', 'britney', 'veronica', 'maria' } # use set methods to create sets all_names, neutral_names, and specific_names. all_names = { 'john', 'bailey', 'charlie', 'chuck', 'michael', 'samuel', 'jayden', 'aiden', 'henry', 'lucas', 'elizabeth', 'meghan', 'kim', 'khloe', 'bailey', 'jayden', 'aiden', 'britney', 'veronica', 'maria' } all_names = all_names. union(male_names, female_names) neutral_names = neutral_names. intersection(male_names, females_names) specific_names = all_names. symmetric_difference(neutral_names) print(sorted(all_names)) print(sorted(neutral_names)) print(sorted(specific_names))

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 22:00
Which one of the following would administrators use to connect to a remote server securely for administration? a. telnetb. secure file transfer protocol (sftp)c. secure copy (scp)d. secure shell (ssh)
Answers: 1
question
Computers and Technology, 22.06.2019 08:50
Can online classes such as gradpoint track your ip location like if im taking a final and i give somebody else my account and they take the final for me will it show where they are taking the final from? and can this be countered with a vpn
Answers: 1
question
Computers and Technology, 22.06.2019 11:10
Which are not examples of chronic or persistent stress? moving
Answers: 1
question
Computers and Technology, 22.06.2019 17:30
How do you make a lenny face? plz, brailiest to who can answer first.
Answers: 1
You know the right answer?
Male_names = { 'john', 'bailey', 'charlie', 'chuck', 'michael', 'samuel', 'jayden', 'aiden', 'henry'...
Questions