このコードで奇妙な動作が見られます:
images = dict(cover=[],second_row=[],additional_rows=[])
for pic in pictures:
if len(images['cover']) == 0:
images['cover'] = pic.path_thumb_l
elif len(images['second_row']) < 3:
images['second_row'].append(pic.path_thumb_m)
else:
images['additional_rows'].append(pic.path_thumb_s)
私のweb2pyアプリは私にこのエラーを与えます:
if len(images['cover']) == 0: TypeError: object of type 'NoneType' has no len()
これで何が悪いのか理解できません。多分いくつかのスコープの問題?