I am new to ArcGIS. I have been tasked with making a python script that will select the regions within the larger circles below.
So in other words make a selection of everything in the larger green, red, and light blue circles above. I am not sure if this is even possible so could someone let me know if it is possible and direct me to whatever documentation or other resources I need to review on it to make this happen?
At the moment we are using Arcgis Online but may need to use ArcGIS Pro to make this work?

This is totally doable with agol/Arcgis Enterprise GeometryServer, or arcgis api for python. // First aproach 1 - First you merge the biggest geometry.
2- Then, you will subtract the smallest geometry. Now you have the geometry to make the selection.
3- select every FeatureLayer you want with the resultant geometry from steps 1,2
//Second aproach
1 - Make one spatial join with biggest buffer
2 - Make another spatial join with smallest buffer
3 - The result objectids should be only in the biggest buffer, use it to do the selection.