0 votes
in Django by
What is the output of the following code?

>>> from Django import forms

>>> f = forms.CharField()

>>> f.clean(”)

a) True

b) ’’

c) None

d) Validation Error

1 Answer

0 votes
by
d) Validation Error
...