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
Get step-by-step solutions from verified subject matter experts
