Programming/Python

[python] 산술 연산 관계 연산

bisi 2020. 4. 16. 12:17

주요 산술 연산(arithmetic operation)

 

연산자 연산 비고
+ 덧셈  
- 뺄셈  
* 곱셈  
/ 나눗셈 결과는 항상 실수
// 몫구하기  
% 나머지 구하기  

 

주요 관계 연산(relational operation)

 

관계 연산자 연산 비고
x == y equality x == y이면True
x < y less x < y이면True
x > y greater x > y이면True
x <= y less than or equal x <= y이면True
x >= y greater then or equal x >= y이면True
x != y not equal x != y이면True

 

'Programming > Python' 카테고리의 다른 글

[python] 연산자, 연산자 우선순위, math 내장 함수  (0) 2020.04.17
[python] 기초 개념  (0) 2020.04.15
[Setting] Python 2.7 설치  (0) 2019.04.02