Write a regular expression that will match the states that voted yes to President Trump's impeachment. You must use RegEx positive lookahead.
txt = "Texas = no, California = yes, Florida = yes, Michigan = no"
pattern = "yourregularexpressionhere"
re.findall(pattern, txt) ➞ ["California", "Florida"]
import re from the code.