이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

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():
	for v in bla:
		if bar:
			if baz:
				if wiz:
					if quux: # 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")
PREVIEWING: brett.blue/embedded-collector-release