Question: Write a function that does the following: Given a list of emails, returns the unique email domains. DO NOT USE PANDAS! #!/bin/python3 import sys import

Write a function that does the following:

Given a list of emails, returns the unique email domains.

DO NOT USE PANDAS!

#!/bin/python3

import sys import os

# Complete the function below.

def unique_domains(emails):

#write code here

emails = sys.stdin.readlines() emails = [email.strip() for email in emails] domains = unique_domains(emails) for domain in sorted(domains): print(domain)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!