i am using python idle in windows7 to run my program.
whenever i try to run the program i get an syntax error as unexpected indent.
the code i am trying to run is as follows:
def print_lol(movies):
for each in movies:
if isinstance(each,list):
print_lol(each)
else:
print(each)