operators
2019. 12. 28. 13:45
연산자 산술연산자 +, -, *, /, //, %, ** 부동소수점 0.1 + 0.2 = 0.30000000000000004 해결 1. 유효숫자 지정 (반올림) round(2.2) = 2 round(-3.8) = -4 해결 2. 고정소수점 연산: 십진법 연산 모듈, str 객체 생성, int 연산 가능 from decimal import Decimal float(Decimal('0.1') + Decimal('0.2')) = 0.3 해결 3. fraction (분자, 분모) int/float 연산 가능 import fractions fractions.Fraction(5, 30) = Fraction(1, 6) fractions.Fraction(0.75) = Fraction(3, ..