Skip to content

Files

Latest commit

 

History

History
26 lines (17 loc) · 411 Bytes

File metadata and controls

26 lines (17 loc) · 411 Bytes

Pattern: Use of multiple spaces after operator

Issue: -

Description

There should be only one space after an operator.

Example of incorrect code:

# There are two spaces after the multiplication operator
num = 10
doubled = num *  2

Example of correct code:

num = 10
doubled = num * 2

Further Reading