Having the unsorted list of email addresses, we are now left to sorting them and printing them.
for address in sorted(addresses):Obviously, with a little extra coding, you can write the output to a file.
print address
We are still not done, however. Next, we need to call the main() function and pass the location of the email to it.
