I want to extract top level domains from email addresses with Python. I want to use a regular expression to get everything after the FIRST dot after the @ symbol
E.g.
tony.manero@testing.com
ted.br@top.domain.us
Expected result
.com
.domain.us
How can I use regex to achieve this result?