| Consider the following code where f is a Form object.
>>> f = ContactForm()
>>> print(f)
What is the output?
Choose the correct option from below list
(1)The form is not rendered
(2)None of the options
(3)An error is displayed
(4)The form renders as HTML
Answer:-(4)The form renders as HTML | | |