Get your own Python server Result Size: 625 x 565
x
 
import re
txt = "The rain in Spain"
#Find all lower case characters alphabetically between "a" and "m":
x = re.findall("[a-m]", txt)
print(x)
['h', 'e', 'a', 'i', 'i', 'a', 'i']