My 1st DataFrame is so:
RowCol Value_Pre
Key1 234
Key3 235
Key2 235
Key4 237
My Second Dataframe is:
RowCol Value_Post
Key3 235
Key1 334
Key4 237
Key2 435
How to create a third dataframe like a the one below by combining the two dataframe
RowCol Value_Pre Value_Post
Key1 234 334
Key3 235 235
Key2 235 435
Key4 237 237
How to develop this code in Python?