I have two DataFrames: one has string and the other has int. I am trying to multiply these two to generate an algebraic expression:
df1=pd.DataFrame([1,2,3])
df2=pd.DataFrame(["x","y","z"])
How to generate the expression with two different data types?