Python遇到问题记录1-unexpected indent

新手开始学习python,调试代码遇到了问题。unexpected indent。查找得知主要是没有对齐。 原来代码长这个样子。
res = open_url(url)
result.extend(find_movies(res))
”’
with open(“xihaue.txt”, “w”, encoding=”utf-8”) as f:
for each in result:
f.write(each)
”’
save_to_excel(result)
if name == “main“:
main()

查找了发现注释掉的地方,就是‘’‘。。。。’‘’的部分,‘’‘没有缩进,所以导致了报错。按Tab键缩进’‘’就可以了成功调试。

你可能感兴趣的:(Python遇到问题记录1-unexpected indent)