Pattern: Missing whitespace around operator
Issue: -
There should be one space before and after all operators.
if age>15:
print('Can drive')
if age > 15:
print('Can drive')
Pattern: Missing whitespace around operator
Issue: -
There should be one space before and after all operators.
if age>15:
print('Can drive')
if age > 15:
print('Can drive')