Skip to content

Files

Latest commit

 

History

History
25 lines (16 loc) · 374 Bytes

File metadata and controls

25 lines (16 loc) · 374 Bytes

Pattern: Missing whitespace around operator

Issue: -

Description

There should be one space before and after all operators.

Example of incorrect code:

if age>15:
    print('Can drive')

Example of correct code:

if age > 15:
    print('Can drive')

Further Reading