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

Python의 여러 줄 if 문에서 각 조건을 주석 처리하는 방법은 무엇입니까?

<시간/>

여러 줄 if 문 조건을 괄호로 묶는 경우 이 작업을 직접 수행할 수 있습니다. 예를 들어,

if (cond1 == 'val1' and
   cond2 == 'val2' and # Some comment
   cond3 == 'val3' and # Some comment
   cond4 == 'val4'):

단, 괄호 없이 하려고 하면 불가능합니다. 예를 들어 다음 코드는 오류를 제공합니다.

if cond1 == 'val1' and \
   cond2 == 'val2' and \ # Some comment
   cond3 == 'val3' and \ # Some comment
   cond4 == 'val4':