A local variable is defined (by an assignment) but never used.

If the variable is included for documentation purposes or is otherwise intentionally unused, then change its name to indicate that it is unused, otherwise delete the assignment (taking care not to delete right hand side if it has side effects).

In this example, the random_no variable is never read but its assignment has a side effect. Because of this it is important to remove only the left hand side of the assignment in line 10.

  • Python: Assignment statements.