is there find all method in re or regex module in python 3f

Solutions on MaxInterview for is there find all method in re or regex module in python 3f by the best coders in the world

showing results for - "is there find all method in re or regex module in python 3f"
Anthony
26 May 2019
1>>> text = "He was carefully disguised but captured quickly by police."
2>>> re.findall(r"\w+ly", text)
3['carefully', 'quickly']
4