(25)
Answer (Choose 1 answer)
A. [i for i in City_B if i not in City_A]
B. [i for i in City_A if i in City_B]
C. [i for i in City_B if i in City_A]
D. [i for i in City_A if i not in City_B]
City A = ['1','2','3', '4']City_B = ['2','3', '4', '5']
Suppose, you are given 2 list-City_A and City_B.In both cities, some values are common. Which of the following code will find the name of all present in "City_A" but not in "City_B".
cute Stam