Get your own Python server Result Size: 625 x 565
x
 
import re
#Return a list containing every occurrence of "ai":
txt = "The rain in Spain"
x = re.findall("ai", txt)
print(x)
['ai', 'ai']