Write a Python program that first creates empty list. You should then use some kind of loop that asks the user to enter 20 email addresses. Add each email address to the list.
Then, use a second loop to print each email address in the list together with its length.
Sample: Suppose there are 3 names, your program output (input in red) should look like this:
Enter email: stevewilliams2133
Enter email: steven21
Enter email: stevenwill21
Email: stevewilliams2133
Length: 17
Email: steven21
Length: 8
Email: stevenwill21
Length: 12