나누기, 바닥 나누기 및 모듈러스 - 모든 초보자가 알아야 할 파이썬 산술 연산자.

운영자란?



연산자는 변수와 값에 대한 작업을 수행하는 데 사용됩니다.
파이썬에서 연산자는 수행하는 작업의 종류에 따라 여러 범주로 분류됩니다.
여기에는 다음이 포함됩니다.
  • 산술 연산자
  • 할당 연산자
  • 비교 연산자
  • 논리 연산자
  • ID 연산자
  • 회원 연산자
  • 비트 연산자

  • 산술 연산자
    산술 연산자는 일반적인 수학 연산을 수행하기 위해 숫자 값과 함께 사용됩니다.

    운영자 이름 예
  • + 더하기 x + y
  • - 빼기 x - y
  • * 곱셈 x * y
  • /구분 x/y
  • % 모듈러스 x % y
  • ** 지수화 x ** y
  • //바닥 분할 x//y

  • 분할, 모듈러스 및 바닥 분할의 차이점
    이 연산자들은 모두 나눗셈을 수행하지만 다른 결과를 출력하기 때문에 매우 흥미롭습니다.

    #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.
    
    
    
    


    당신이 뭔가를 배웠기를 바랍니다.

    행복한 코딩!

    좋은 웹페이지 즐겨찾기