本文介绍了TypeError:'NoneType' 对象在 Python 中不可迭代的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

错误 TypeError: 'NoneType' object is not iterable 是什么意思?

我在这个 Python 代码上得到了它:

I am getting it on this Python code:

def write_file(data, filename): # creates file and writes list to it
  with open(filename, 'wb') as outfile:
    writer = csv.writer(outfile)
    for row in data: # ABOVE ERROR IS THROWN HERE
      writer.writerow(row)

推荐答案

表示data的值为None.

这篇关于TypeError:'NoneType' 对象在 Python 中不可迭代的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 05:08