if len(user_hash) > 0:
with open(log_file, "w") as log_f:
for name in user_hash:
log_f.write("Name:%s \n Email: %s" % (name, email)
else len(user_hash) < 0:
print "Nothing happened :("
我一直在else語句上得到一個語法錯誤,我不確定它爲什麼會一直產生這個錯誤。我沒有任何其他語句在同一個def,它仍然給出錯誤。我該怎麼辦?其他語法錯誤Python
您需要縮進代碼。 – Linuxios 2013-05-10 03:15:06
請閱讀[格式幫助](http://stackoverflow.com/editing-help)瞭解如何在帖子中設置代碼格式。不要插入所有'
'標籤。 – BrenBarn 2013-05-10 03:17:26