I have 2 ranges,
range1=range(80, 90)
range2=range(0,360).
I need to check if range1 is present in range2. Can we compare 2 ranges in Python??
More Info--These ranges are being used to check ports .i.e range2 contains authorized(fixed and pre-define) ports and range1 is changing at run time
CodePudding user response:
You can convert those 2 lists in sets and then check if the first is contained in the other like this:
set1 = set(range(80, 90))
set2 = set(range(0, 360))
is_subset = set1.issubset(set2)
print(is_subset)
