Task 2 Retrieving and checking a password
When people register on a theatre website, the email address is used as the login name and the user is requested to enter a password to use with the account.
A user’s details include: email address, password, first name, surname and address.
These are stored in a csv file.
When a user logs in, they enter their email address and must enter their password before accessing their account details.
Design, code, test and evaluate a program that:
• asks for an email address and password
• searches the file for the email address
• if the password is correct it displays the customer details
• it displays a suitable error message if the password is incorrect.
You will need to create your own CSV file and investigate how to import this into your python code