Hacker News new | ask | show | jobs
by solox3 4918 days ago
All inline comments should come with a space after the #. All dictionary literals should have no spaces immediately within { and }. All multi-line dictionaries should be aligned one character after the opening parenthesis. There exists a line with "for key, value in dict.items.():", which is invalid. Use of one-liner "for" statements is discouraged. "if not a in b" is a more easily translatable statement than "if a not in b".
1 comments

Thanks solox3, are you referring to this line? ## .items() is the dict expressed as (key, value) tuples print dict.items() ## [('a', 'alpha'), ('o', 'omega'), ('g', 'gamma')]