Which method allows validation involving two or more form fields together?
- A clean_<fieldname>()
- B clean()
- C validate()
- D is_valid()
Answer
clean()
Field-level clean methods only see their own value. The form-wide clean() is the only place to compare fields, such as checking an end date follows a start date.





