Python3 division( / vs // )
- '/' float division
- Description : Returns the quotient of two expressions.(나눗셈의 몫)
결과는 항상 float이다. - example
- Description : Returns the quotient of two expressions.(나눗셈의 몫)
- '//' float division
- Description : Returns the integral part of the quotient.(나눗셈의 몫의 정수부분)
- example
- 주의 할 점
- // float division의 결과가 음인 경우 0의 방향이 아닌 마이너스 방향으로 내림(floor) 연산이 이루어지므로 사용시 주의를 요함.
댓글
댓글 쓰기