TypeError: 'TestCase' object is not iterable
这个异常呢其实是因为我对list没有足够熟悉我一开始很疑惑,明明已经正确返回testcase对象了呀,为啥会报TypeError: 'TestCase' object is not iterable这个错误 呢?分析:这个错误的意思是说TestCase这个对象是不可迭代的(注意到了吗,是TestCase,而不是testcase)看print(testcase)输出的结...