Python 통과 문
Python 패스는 프로그램 구조의 무결성을 유지하기 위한 빈 명령문입니다.
pass는 아무 작업도 수행하지 않으며 일반적으로 자리 표시자 문으로 사용됩니다.
Python 언어 패스 문 구문 형식은 다음과 같습니다.
pass
예:
#!/usr/bin/python
# -*- 코딩: UTF-8 -*-
# Python의 각 문자
를 문자로 출력합니다. 'Python':
if letter == 'h':
pass
print 'This is the pass block'
print '현재 문자:', letter
print "Good" 안녕!"
# -*- 코딩: UTF-8 -*-
# Python의 각 문자
를 문자로 출력합니다. 'Python':
if letter == 'h':
pass
print 'This is the pass block'
print '현재 문자:', letter
print "Good" 안녕!"
위 예제의 실행 결과:
현재 문자: P
현재 문자: y
현재 문자: t
패스 블록입니다
현재 문자: h
현재 문자: o
현재 문자: n
Good bye!
현재 문자: y
현재 문자: t
패스 블록입니다
현재 문자: h
현재 문자: o
현재 문자: n
Good bye!