Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 334 Bytes

File metadata and controls

25 lines (16 loc) · 334 Bytes

Pattern: SyntaxError or IndentationError

Issue: -

Description

The code is not in valid Python syntax.

Example of incorrect code:

This code is not valid Python.

if (this.isNotPython()) {
    # Syntax error!
}

Example of correct code:

if self.isPython():
    # Happily chug along