Why does the Python parser not follow PEP 8?
>>> (1 + 2.56j) * (-1 - 3.44j)
(7.8064-6j)

According to PEP 8, the output in our example should be with spaces surrounding the subtraction operator, like this:
>>> (1 + 2.56j) * (-1 - 3.44j)
(7.8064 - 6j)