For example,
I set request.session['jump'] = [u'howhigh',u'justlow'] ( i did this by getting values from a form)
How can I get just the first value? I thought something like jump = request.session['jump'][0] would work, but its ont doing it for me.
Also how do i exclude the first value and return all but the one i excluded?