北漂IT民工 的博客

Python的缩进引起的BUG


if module == ‘modify’:

user = self.getUser()

temp = {

‘name’: user.username,

‘contact’: user.contact,

‘email’: user.email,

‘intro’: user.intro

}

self.display(‘user_modify.html’, temp)

return



当我把 temp的}向外移动两格后,后面添加的两行竟然同样可以执行。

导致了一些莫名其妙的结果。。

而这个if又是写在最后的。

python的缩进,永远的话题!