ValueError: need more than 0 values to unpack (python lists)

后端 未结 3 1445
清酒与你
清酒与你 2021-02-18 15:20

I\'m learning python from Google code class. I\'m trying out the exercises.

def front_x(words):
  x_list, ord_list = []
  for word in words:
    if word[0] == \'         


        
3条回答
  •  耶瑟儿~
    2021-02-18 15:55

    return type of function does not match with values expected in function...

    check the number of variables returned from function and variables you are expecting

提交回复
热议问题