I have complex text as a value in col1 in DF1 and i want it merge with clo1 and 2 from DF2. I am wondering if there a fast way to merge it with python
import pandas as pd
DF1 = pd.DataFrame({'Col1':['AB/B/C','DE/f','G/T/R']})
DF2 = pd.DataFrame({'Col1':['AB','B','C','D'],
'Test2':[1,2,3,4]})
print(DF1)
print(DF2)
Thank you in advance