I have the first pandas.DataFrame
first_key second_key
0 0 1
1 0 1
2 0 2
3 0 3
4 0 3
and also the second pandas.DataFrame
key status
0 1 'good'
1 2 'bad'
2 3 'good'
And I want to get the following pandas.DataFrame
first_key second_key status
0 0 1 'good'
1 0 1 'good'
2 0 2 'bad'
3 0 3 'good'
4 0 3 'good'
How to do this?