私はPython 3を学ぶ初心者で、ヘルプコードを求めています:
movies = ["holy grail",1975,"terry jones",91
[ "gramham chamman",
["michael palin","john crees","eric idle","terry jones"]]]
for each_item in movies:
if isinstance (each_item,list):
for nested_item in each_item :
print (nested_item)
else:
print (each_item)
# when i type the next line with " else : "
the program (python shell) told me syntax error
解決方法がわかりません よろしくお願いします