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

Related questions

0 votes
0 votes
asked Jun 26, 2022 in Django by john ganales
0 votes
asked Jun 26, 2022 in Django by john ganales
...