do not use too many nested if conditions

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: python-best-practices/too-many-nested-if

Language: Python

Severity: Warning

Category: Best Practices

Description

Too many nested loops make the code hard to read and understand. Simplify your code by removing nesting levels and separate code in small units.

Non-Compliant Code Examples

if foo < 0:
    if bar:
        if baz:
            if bao:
                pass

Compliant Code Examples

if foo:
    if bar:
        if baz:
            pass
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 Analysis