Este producto no es compatible con el sitio Datadog seleccionado. ().
Esta página aún no está disponible en español. Estamos trabajando en su traducción.
Si tienes alguna pregunta o comentario sobre nuestro actual proyecto de traducción, no dudes en ponerte en contacto con nosotros.

Metadata

ID: python-best-practices/nested-blocks

Language: Python

Severity: Error

Category: Code Style

Description

Avoid to nest too many loops together. Having too many loops make your code harder to understand. Prefer to organize your code in functions and unit of code you can clearly understand.

Learn More

Arguments

  • max-levels: Maximum number of nesting levels. Default: 4.

Non-Compliant Code Examples

def func():
    while foo:
        while bar:
            while baz:
                while wiz:  # too many nested elements
                    pass
def func():
    for v in bla:
        for w in bar:
            for x in baz:
                for y in wiz:  # too many nested elements
                    pass
def func():
	if foo:
		pass
	else:
		if bar:
			if baz:
				if wiz:  # too many nested elements
					pass
def func():
	if foo:
		if bar:
			if baz:
				if wiz:  # too many nested elements
					pass
def func():
	if foo:
		pass
	elif bar:
		if bar:
			if baz:
				if wiz:  # too many nested elements
					pass
	else:
		pass

Compliant Code Examples

while Foo:
    while Bar:
        print("foobar")
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Integraciones sin problemas. Prueba Datadog Code Security