1# iterable
2GEEKS_CHOICES =(
3 ("1", "One"),
4 ("2", "Two"),
5 ("3", "Three"),
6 ("4", "Four"),
7 ("5", "Five"),
8)
9
10# creating a form
11class GeeksForm(forms.Form):
12 geeks_field = forms.ChoiceField(choices = GEEKS_CHOICES)