- 1
what can i do to solve this
Drag and drop from the options below to print only the items in the set "a" that are not in the set "b". print( ) a b & | - There are 3 blank spots after the print in the parentheses so what is the order? appreciate if u can help me
1 Answer
+ 1
please read that chapter again
answer is: print( a-b )
eg: a=[1,2,3,4,5]
b=[2,3,4]
nums that are in a but not in b
c= print( a - b )
so c=[1,5]
hope this helps



