1. ホーム
  2. python

[解決済み] TypeError: 'NoneType' オブジェクトは Python でイテレート可能ではない

2022-03-01 20:55:39

質問

エラーとは TypeError: 'NoneType' object is not iterable の意味は?

私はこのPythonのコードでそれを得ています。

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)

解決方法は?

の値を意味します。 dataNone .