I have a couple of simple loops like so:
for i in range (30, 52): #do some stuff here for i in range (1, 18): #do some more stuff
You can convert the two iterators for your ranges to lists and then combine them with an addition:
for i in list(range(30, 52)) + list(range(1, 18)): # something