how to assert two object is same python code example
Example 1: python not equal multiple values
while choice not in [1, 2, 3]:
Example 2: same elements of two sets in python
x = {2, 3, 5, 6}
y = {1, 2, 3, 4}
z = x.intersection(y)
while choice not in [1, 2, 3]:
x = {2, 3, 5, 6}
y = {1, 2, 3, 4}
z = x.intersection(y)