Doarchive

Python - divmod 본문

ETC/Python

Python - divmod

오순발닦개 2023. 4. 17. 13:20

divmod(x,y)  - 두 숫자를 나누어 몫과 나머지를 tuple로 반환

divmod(4,2)
>>(2, 0)

divmod(4,2)[0]
>>2

divmod(4,2)[0]
>>0

 

728x90