diff --git a/pep-0008.txt b/pep-0008.txt --- a/pep-0008.txt +++ b/pep-0008.txt @@ -315,17 +315,17 @@ i = i + 1 submitted += 1 - x = x * 2 - 1 - hypot2 = x * x + y * y + x = x*2 - 1 + hypot2 = x*x + y*y c = (a + b) * (a - b) No:: i=i+1 submitted +=1 - x = x*2 - 1 - hypot2 = x*x + y*y - c = (a+b) * (a-b) + x = x * 2-1 + hypot2 = x*x + y * y + c = a+b * a-b - Don't use spaces around the ``=`` sign when used to indicate a keyword argument or a default parameter value.