Python Forum
I am having trouble understanding homework.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I am having trouble understanding homework.
#5
Sets are actually fun to work with. This is for example is symmetric_difference:

names = {'Oliver', 'Declan', 'Henry'}

for sample in ({'Oliver', 'Atlas'}, {'Declan', 'Noah'}):
    print(sample.symmetric_difference(names))
Output:
{'Declan', 'Henry', 'Atlas'} {'Oliver', 'Noah', 'Henry'}
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
RE: I am having trouble understanding homework. - by perfringo - Feb-20-2021, 08:40 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020