728x90
operator
-
[Python tutorial] 11. Operators코딩/Python 2022. 12. 21. 17:14
연산자, Operators 산술 연산자, Arithmetic operators 지정 연산자, Assignment operators 비교 연산자, Comparison operators 논리 연산자, Logical operators 동일 연산자, Identity operators 자격 연산자, Membership operators 비트 연산자, Bitwise operators 산술 연산자, Arithmetic Operators print(10 + 5) 연산자 이름 예 + 더하기 x + y - 빼기 x - y * 곱하기 x * y / 나누기 x / y % 나머지 나누기 Modulus x % y ** 제곱 x ** y // 바닥나누기 x // y 지정 연산자, Assignment Operators 연산자 예 S..