일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Database
- GitLab
- pandas
- git
- DB
- docker
- Linux
- AI
- Flask
- LLM
- CUDA
- Mac
- numpy
- Converting
- Python
- TORCH
- Paper
- file
- Laravel
- Container
- list
- Windows
- evaluation
- Package
- pytorch
- judge
- enV
- format
- KAKAO
- PostgreSQL
Archives
- Today
- Total
목록반올림 (1)
Daily Develope
[Python] 반올림
일반 반올림 (오사오입)python의 기반 round 함수를 사용하는 경우 오사오입이 적용된다. (올림 자리수가 5인 경우 그 앞자리가 홀수면 올리고 짝수면 내림)print(round(3.5, 0)) # 출력값 : 4print(round(4.5, 0)) # 출력값 : 4decimal 사용 (사사오입)일반적으로 알고있는 반올림 방법import decimalctx = decimal.getcontext()ctx.rounding = decimal.ROUND_UPprint(round(decimal.Decimal(3.5), 0)) # 출력값 : 4print(round(decimal.Decimal(4.5), 0)) # 출력값 : 5 주의사항 : 반올림 후 결과의 type은 Decimal 이므로 필요에 따라 형변환 수행.
Develope/Python
2024. 8. 20. 11:17