Login
Remember
Register
Ask a Question
Consider the following code where f is a Form object
0
votes
asked
Jun 26, 2022
in
Django
by
john ganales
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
django
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 26, 2022
by
john ganales
c) The form renders as HTML
...