I am learning re.findall in Python:
import re A=\'aabbabaabbaa\' print(re.findall(\'a.b\',A)) [\'aab\', \'aab\']
I want to what re.findall ex