프로그래밍 언어/Python 3.11

[Python] 제어문: 조건문

cogito21_cpp 2024. 8. 13. 14:06
반응형

1. if 문

- if문의 조건식이 참일 때 들여쓰기로 묶인 코드들이 실행

if 조건식:
    실행 코드

 

2. if-else 문

 

3. if-elif-else 문

 

4. match 문

 

5. 중첩 조건문

 


Reference

- Python 3.11.8 Tutorial: if Statements

- Python 3.11.8 Tutorial: match Statements

 

 

반응형