标签: python pep8
给出以下代码:
d = {'a':1, 'b':2} if not 'c' in d: print 'kaboom' if 'c' not in 'd': print 'kaboom'
在这两种情况下都打印了#kaboom'。有什么不同,为什么PEP8抱怨前者。