07. Python - 함수 및 연산자

608 단어 pythonTILTIL

# incrememt()

Python 증감연산자   :   +=

# decrement()

Python 감소연산자   :   -=

# find_remainder()

Python 산술연산자(   +   ,   -   ,   *   ,   /   ,   //   ,   %   )

5 % 2 # --> 1
48 % 2 # --> 0      findRemainder(); # --> 1

# ate 연산식

📌 %   - 남은 값 return (modulo operator)
📌 += 
📌 -= 
📌 *= 
📌 |= 
📌 **   - 2진법 (ex, 10의 2승)


# Python 연산 순서

() > * > , / , % > + , -

result = (10 + 20) * 3      ##  90

좋은 웹페이지 즐겨찾기