Just stack them after one another:
[i for i in range(100) if i > 10 if i < 50]
Produces the integers between 11 and 49, inclusive.
Just stack them after one another:
[i for i in range(100) if i > 10 if i < 50]
Produces the integers between 11 and 49, inclusive.