목록논리연산자 (1)
지 구 여 행
Python_기본 연산자(Basic Operatiors)
1. 산술 연산자(Arithmetic Operatior) : Operator Name Example Exercise + 더하기(Addition) a + b 7 + 3 = 10 - 빼기 (Subtraction) a - b 7 - 3 = 4 * 곱하기(Multiplication) a * b 7 * 3 = 21 / 나누기 (Division) a / b 7 / 3 = 2.33 % 나머지 (Modulus) a % b 7 % 3 = 1 ** 제곱 (Exponentiation) a ** b 7 ** 3 = 343 // 몫 (Floor Division) a // b 7 // 3 = 2 2. 비교 연산자(Comparison Operators) : Operator Description Example Exercise == ..
개인 공부/Python_Study
2022. 5. 29. 15:18