"함수 divmod()"의 두 판 사이의 차이

(새 문서: category: Math ==Python== category: Python <source lang='Python'> print( divmod(13, 5) ) (2, 3) </source> ==같이 보기== *modulo)
 
5번째 줄: 5번째 줄:
<source lang='Python'>
<source lang='Python'>
print( divmod(13, 5) )
print( divmod(13, 5) )
(2, 3)
# (2, 3)
</source>
</source>


==같이 보기==
==같이 보기==
*[[modulo]]
*[[modulo]]

2016년 5월 22일 (일) 01:41 판


1 Python

print( divmod(13, 5) )
# (2, 3)

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}