result = [(u'ABC', u'(Choose field)', u'ABCD', u'aa', u'A', u'A_100')]
I'm trying to remove '(Choose field)'
from the above list using the following syntax:
result.remove('(Choose field)')
# and
result.remove("'(Choose field)'")
But both things are not working fine and it ends up with this error
{ValueError}list.remove(x): x not in list