I have a input field as follows
<input type="text" name="first_name"/>
when I call it from view.py
first_name = request.POST['first_name'],
I get value as following
(u'sazzad',)
here sazzad
is my input but i get that extra part (u'',)
how to fix this??