需要对模式进行哪些调整才能获得所需的输出?
from re import findall
s= '''one can't two won't three'''
pat = r'(?=(\b\w+[\w\'\-’]*\b \b\w+[\w\'\-’]*\b))'
s2 = findall(pat, s)
print(s2)
# actual output
# ["one can't", "can't two", 't two', "two won't", "won't three", 't three']
# desired output
# ["one can't", "can't two", "two won't", "won't three"]