我是新手編程,但我已經在Java,C++,Javascript,PHP的教程,並從來沒有遇到過這樣的事情。 能否請您解釋一下這個代碼,尤其是isinstancepython for循環說明請
for each_item in movies:
if isinstance(each_item, list):
for nested_item in each_item:
if isinstance(nested_item, list):
for deeper_item in nested_item:
print(deeper_item)
else:
print(nested_item)
else:
print(each_item)
在Python中,你需要縮進代碼,否則就沒有意義 – bennofs
http://docs.python.org/3/library/functions.html#isinstance –
你難道不明白哪一部分?請注意Python for for循環對於每個循環都是真的。也就是說,它們遍歷一個迭代器並讓你訪問該迭代器中的每個元素。 –