+ 6
What is the answer ?
Drag and drop from the options below to print only the items in the set "a" that are not in the set "b". print(____ _____ _____) b & - a |
8 Respostas
+ 1
a = {1, 2, 3, 4, 1}
b = {2, 1}
print(a - b)
+ 6
Answer: a - b
+ 3
Answer: a - b
+ 2
What is the answer ?
Drag and drop from the options below to print only the items in the set "a" that are not in the set "b".
print(____ _____ _____)
Answer:
a - b
0
answer is a-b
0
a-b
0
print(a-b)
0
thanks