I have a function:
def store(word, info_list): for a, b, c, in info_list: data = {} ... and I am calling:
store(x[0],x[1]) Where
x = (u'sergeev', (u'2015 afc asian cup group b', (u'2015 afc asian cup group b', u'sergeev', 372.57022256331544), 0.22388357256778307)) My goal is to make:
a=u'2015 afc asian cup group b' b=(u'2015 afc asian cup group b', u'sergeev', 372.57022256331544) c=0.22388357256778307 But I got
in store for a,b,c, in info_list: ValueError: too many values to unpack I couldn't find where the mismatch was...can anyone help me out?
x = (('2015... ', ' 2015... ', 0.22),)and see the difference.