Validating and Verifying
Circle which of the following email addresses are in the correct format:
bignerd123@awesomemail.com bignerd123.awesomemailcom
snakeye@funnyserver mntyPython@slithermail.it
Describe each of the following validation methods:
presence checking: making sure that something has been entered
existence checking: making sure that data exists on a database
length checking: making sure that the data is not too short or long
format checking: making sure that data is in the correct form
On the code snippet below, show where validation has been used, and where verification is used:
email = “”
validation
while email == “”:
email = input(“Enter email address:”)
print(“Please verify your email:”) verification
print(“You entered:”, email)
visit twinkl.com