for遍历用例数据时,报错:TypeError: list indices must be integers, not dict,解决方法

一:报错:TypeError: list indices must be integers, not dict

  for i in range(0,len(test_data)):
   suite.addTest(TestCaselogin("test_api",test_data[i][*arg]))

  解决方法:是参数表示不正确的原因:test_data[i][*arg] 应该表示为item[*arg]

二:报错:'int' object is not iterable

   
 for i in len(A):
      print("lll")
   解决方法:len(A) 改为range(len(A))
 
上一篇:Educational Codeforces Round 80 (Rated for Div. 2) D. Minimax Problem


下一篇:对C++容器类vector的一点理解