Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 중첩 if 문을 사용하는 방법은 무엇입니까?


프로그래밍에서 중첩이라는 용어는 조건문이 다른 내부에 나타날 때 사용됩니다. Python에서 if 문은 if 및 else 블록에 중첩될 수 있습니다. A 블록마다 들여쓰기 수준이 증가한다는 사실을 알고 있어야 합니다. 따라서 중첩 if 조건의 경우 내부 블록의 들여쓰기 수준이 외부 블록에서 증가합니다. 중첩된 if의 일반 구문은 다음과 같을 수 있습니다. -

if expr1==True:
    if expr2==True:
        #this block will be executed when expr1 and expr2 are true
    else:
        #this block if expr is true but expr2 is false
else:
     if expr3==True:
        #if expr1 is false and expr3 is true
    else:
         #when expr1 and expr3 are false