나누기, 바닥 나누기 및 모듈러스 - 모든 초보자가 알아야 할 파이썬 산술 연산자.
운영자란?
연산자는 변수와 값에 대한 작업을 수행하는 데 사용됩니다.
파이썬에서 연산자는 수행하는 작업의 종류에 따라 여러 범주로 분류됩니다.
여기에는 다음이 포함됩니다.
산술 연산자
산술 연산자는 일반적인 수학 연산을 수행하기 위해 숫자 값과 함께 사용됩니다.
운영자 이름 예
분할, 모듈러스 및 바닥 분할의 차이점
이 연산자들은 모두 나눗셈을 수행하지만 다른 결과를 출력하기 때문에 매우 흥미롭습니다.
#Division (/) - basically gives out the result of a division.
a = 5
b = 2
print(5/2)
# result will be 2.5
#Floor Division (//) - Provides the lower-bound of an integral division
a = 5
b = 2
print(5//2)
# result will be 2, the decimal is cut off returning only the whole number
#Modulus(%) - Computes the reminder of a division,which is the 'leftover' of an integral division.
a= 5
b=2
print(5%2)
#result will be 1, which is the 'leftover' integer after the division
이 모든 작업과 출력되는 다양한 결과를 처음 배웠을 때 이 모든 것을 아는 것의 본질을 잘 이해하지 못했습니다.
그러나 연산자를 이해하는 것은 파이썬에서 문제를 풀 때 유용합니다.
예를 들어 계수는 파이썬에서 짝수와 홀수를 찾는 데 중요합니다.
아래 예를 참조하십시오.
계수(%)를 사용하여 짝수와 홀수를 결정하는 방법
n % 2 == 1
# when n is divided by 2 and the output has a reminder of 1 which means that the number is odd.
n % 2 == 0
# when n is divided by 2 and the is 0, meaning the number is divisible by 2 then the result is an even number.
당신이 뭔가를 배웠기를 바랍니다.
행복한 코딩!
Reference
이 문제에 관하여(나누기, 바닥 나누기 및 모듈러스 - 모든 초보자가 알아야 할 파이썬 산술 연산자.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/lilianmwaura/division-floor-division-and-modulus-python-arithmetic-operators-every-beginner-should-know-13i8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)