본문 바로가기

컴퓨터/Python

Python conditions | 파이썬 조건문

▒ if-else

x = 10
if x > 0:
    print("x is positive")
else:
    print("x is negative")

'컴퓨터 > Python' 카테고리의 다른 글

Python operator 연산자  (0) 2023.02.01
Python list | 파이썬 배열  (0) 2023.02.01
Python loop | 파이썬 반복문  (0) 2023.02.01
Python standard input output | 파이썬 표준 입출력  (0) 2023.02.01
Python 코드 실행하기  (0) 2023.02.01