Django - Testing Django Applications
Given the following form test code, what will
print(form.errors) output if the 'email' field is missing?data = {'name': 'Alice'}
form = ContactForm(data)
form.is_valid()
print(form.errors)