Write a function to read the list of email addresses from a file. Each line of t
ID: 3574163 • Letter: W
Question
Write a function to read the list of email addresses from a file. Each line of the file contains a single email address with user and host separated by an at sign('@') character The function will be given the filename and will return a list of lists. Each element of the list is a list with two values user name (string) and host name (string). You must parse each lino, partition into parts, and string white space from each entry. You must handle when the file does not exist and return an empty list. Use the following function definitionExplanation / Answer
</html>