5. (Python) 조건문, 반복문
2023. 11. 7. 14:09ㆍNAVER AI Tech/Python & AI math
비교연산자
- x < y, x <= y, x > y, x >= y
- x == y, x is y
- s != y, x is not y
if x > y:
print('True')
else:
print('False')
논리 키워드 : and, or, not, **all(), **any()
- all([True, True, True, False]) -> False
- any([True, True, True, False]) -> True
**삼항 연산자
value = 12
is_even = True if value%2 == 0 else False
is even -> True 반환
반복문 : for, while
for _ in range(4):
print(_)
for i in range(0,4,2): # 2를 간격으로 출력
print(i)
for i in range(1,10,-1): # 거꾸로 출력
print(i)
while x > y:
print(x,y)
if x == y:
break
else:
continue
break, continue : 반복문 제어
디버깅 : Error 메세지 분석.
- Google, stackoverflow에서 검색하면서 고치기~
'NAVER AI Tech > Python & AI math' 카테고리의 다른 글
7. (Python) Data Structure (0) | 2023.11.07 |
---|---|
6. (Python) String 과 Function concept (0) | 2023.11.07 |
4. (Python) Function & Console I/O (0) | 2023.11.07 |
3. 코딩에서 Variables란 (0) | 2023.11.06 |
2. Python 개요 (0) | 2023.11.06 |