Write a regular expression that will help us count how many tall people work in your company. You must use RegEx positive lookbehind.
lst = ["tall height", "tall height", "short height", "medium height", "tall height"]
pattern = "yourregularexpressionhere"
len(re.findall(pattern, ", ".join(lst))) ➞ 3
import re from the code.