do not use too many nested if conditions

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください

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