Python tutorial says “Use spaces around operators and after commas, but not directly inside bracketing constructs: a = f(1, 2) + g(3, 4).” What does “not directly inside bracketing constructs” exactly mean?
Python tutorial says Use spaces around operators and after commas, but not directly inside
Share
That probably comes from PEP 8 — Style Guide for Python Code. Specifically, see the section on “Whitespace in Expressions and Statements.”
From that section: