endpoint1 = [1,2,3]
endpoint2 = [4,5,6]
path = list(random.randrange(0,9) for x in range(10))
What's the most pythonic way to make sure the 2 endpoints of the "path" list in the above code contains an element in both "endpoint1" and "endpoint2"
Something like this, but prettier:
if path[0] in endpoint1:
if path[-1] in endpoint2:
print "valid"
if path[0] in endpoint2:
if path[-1] in endpoint1:
print "valid"