How do I get href value instead of the text from a result set?

I’m using print(d.contents) My print loop prints the following ResultSets: [<a href="Property.aspx?pi=cd1a0b90-07aa-ec11-aa4c-246e960cbc4d" title="3 Bedroom House For Sale In Anthoupoli, Nicosia">3 Bedroom House For Sale In Anthoupoli, Nicosia</a>] [<a href="Property.aspx?pi=c42dc379-5f67-e811-bb4e-a4badb3ceace" title="2 Storey Modern 3 Bedroom House For Sale In Dali Area">2 Storey Modern 3 Bedroom House For Sale In Dali Area</a>] [<a href="Property.aspx?pi=6370763d-61ab-e811-b319-a4badb3ceacd" title="Very Nice And… Read More How do I get href value instead of the text from a result set?

Subquery implementation

I have a table employees ———————————————— | name | email | date_employment | |——-+——————–|—————–| | MAX | qwerty@gmail.com | 2021-08-18 | | ALEX | qwerty2@gmail.com | 1998-07-10 | | ROBERT| qwerty3@gmail.com | 2016-08-23 | | JOHN | qwerty4@gmail.com | 2001-03-09 | ———————————————— and I want to write a subquery that will display employees who have… Read More Subquery implementation