Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Text-to-Speech
- pyautogui
- pypdf2
- DeepLearning
- ironpython
- processstart
- Google API
- google cloud
- 사무자동화 #Selenium
- YOLOv5
- 파이썬 #업무자동화 #python
- pdf merge
- 업무자동화
- objectdetection
- computervision
- 사무자동화
- pythonnet
- yolo
- Text To Speech
- YOLOv7
Archives
- Today
- Total
Doarchive
Python - divmod 본문
divmod(x,y) - 두 숫자를 나누어 몫과 나머지를 tuple로 반환
divmod(4,2)
>>(2, 0)
divmod(4,2)[0]
>>2
divmod(4,2)[0]
>>0
728x90
'ETC > Python' 카테고리의 다른 글
[Python] PyPDF2 로 PDF 문서 병합하기 (0) | 2023.06.20 |
---|---|
MQTT 사용 하기 Python , mosquitto (1) | 2023.06.14 |
[Python 업무 자동화 ] 웹에 있는 모든 게시글 데이터 수집, 스크린샷 찍기 (0) | 2023.04.06 |