- Python - 프로그래밍 시작하기
- Python 기초 (Basics)
- Python 변수 (Variables)
- Python 연산자 (Operators)
- Python 리스트 (List)
- Python 튜플 (Tuple)
- Python 문자열 (Strings)
- Python 집합 (Sets)
- Python 딕셔너리 (Dictionary)
- Python 흐름 제어 (Flow control)
- Python 함수 (Function)
- Python 클래스 (Class)
- Python 내장 함수 (Built-in function)
- Python 키워드 (Keyword)
- Keyword - and
- Keyword - as
- Keyword - assert
- Keyword - break
- Keyword - class
- Keyword - continue
- Keyword - def
- Keyword - del
- Keyword - elif
- Keyword - else
- Keyword - except
- Keyword - False
- Keyword - for
- Keyword - from
- Keyword - global
- Keyword - if
- Keyword - import
- Keyword - in
- Keyword - is
- Keyword - lambda
- Keyword - None
- Keyword - not
- Keyword - or
- Keyword - pass
- Keyword - return
- Keyword - True
- Keyword - try
- Keyword - while
- Python 파일 다루기
- Python datetime 모듈
- Python time 모듈
- Python collections.deque
- Python collections.namedtuple
- Python의 선 (Zen of Python)
- Python Tutorial
- NumPy Tutorial
- Matplotlib Tutorial
- PyQt5 Tutorial
- BeautifulSoup Tutorial
- xlrd/xlwt Tutorial
- Pillow Tutorial
- Googletrans Tutorial
- PyWin32 Tutorial
- PyAutoGUI Tutorial
- Pyperclip Tutorial
- TensorFlow Tutorial
- Tips and Examples
if 문¶
if
문은 특정한 조건에 따라 코드를 실행하고자 할때 사용합니다.
아래의 코드는 가장 전형적인 if
문입니다.
if .. else 문¶
if
이후에 참, 거짓을 판별할 수 있는 조건식과 콜론이 있고, 아래에 수행될 코드가 위치합니다.
x = int(input('Please enter an integer: '))
if x >= 0:
print('Positive or Zero')
else:
print('Negative')
if 문¶
else
는 필수적인 것은 아니어서 if 문 하나로만 구성될 수도 있습니다.
x = int(input('Please enter an integer: '))
if x == 0:
print('Zero!')
x가 0일 경우에만 ‘Zero!’를 출력합니다.
if .. elif .. else 문¶
elif
를 사용할 수 있습니다. elif
는 ‘else + if’ 의 줄임 표현입니다.
x = int(input('Please enter an integer: '))
if x > 0:
print('Positive')
elif x < 0:
print('Negative')
else:
print('Zero')
elif
는 다른 언어에서 사용되는 switch, case 문을 대신해서 사용할 수 있습니다.
위의 elif
를 사용한 코드는 아래의 if
와 else
만 사용한 코드와 구조적으로 같지만 훨씬 간결합니다.
x = int(input('Please enter an integer: '))
if x > 0:
print('Positive')
else:
if x < 0:
print('Negative')
else:
print('Zero')
이전글/다음글
다음글 : for 문