0 votes
in Django by
Consider the following code where f is a Form object

>>> f = ContactForm()

>>> print(f)

What is the output?

a) An error is displayed

b) The form is not rendered

c) The form renders as HTML

d) None of the options

1 Answer

0 votes
by
c) The form renders as HTML
...