这可能来自PEP
8-Python代码样式指南。具体来说,请参见“表达式和语句中的空白”部分。
从该部分:
Avoid extraneous whitespace in the following situations:- Immediately inside parentheses, brackets or braces. Yes: spam(ham[1], {eggs: 2}) No: spam( ham[ 1 ], { eggs: 2 } )
这可能来自PEP
8-Python代码样式指南。具体来说,请参见“表达式和语句中的空白”部分。
从该部分:
Avoid extraneous whitespace in the following situations:- Immediately inside parentheses, brackets or braces. Yes: spam(ham[1], {eggs: 2}) No: spam( ham[ 1 ], { eggs: 2 } )