For AI agents: A markdown version of this page is available at https://docs.datadoghq.com/security/code_security/static_analysis/static_analysis_rules/python-best-practices/no-double-unary-operator.md. A documentation index is available at /llms.txt.
This product is not supported for your selected Datadog site. ().

Metadata

ID: python-best-practices/no-double-unary-operator

Language: Python

Severity: Error

Category: Best Practices

Description

Operator -- and ++ do not exists in Python. Increment or decrement the variable appropriately.

Non-Compliant Code Examples

--n  # use n = n - 1
++n  # use n = n + 1

Compliant Code Examples

n = n + 1
n = n - 1
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Security