So I have table 1 which is the properties I own
and I have table 2 the tables of government database
table 1: 1 john street, 2 john street, 3 john street, 4 john street
table 2: 1 Clive Street, 2 john street, 2 fred street, 4 john street
I WANT A TABLE WHICH PROVIDES THE COMMON PROPERTIES:
Desired output table: 2 John street, 4 John Street
How can I achieve this with a merge on Pandas?