Notice
Recent Posts
Recent Comments
Link
투케이2K
103. (python/파이썬) [Mac Os] : [문법] : round 사용해 소수점 반올림 처리 수행 본문
[개발 환경 설정]
개발 툴 : VsCode
개발 언어 : python
[소스 코드]
# --------------------------------------------------------------
# [import]
# --------------------------------------------------------------
# --------------------------------------------------------------
# --------------------------------------------------------------
# [요약 설명]
# --------------------------------------------------------------
# 1. round 은 파이썬에서 소수점 반올림 처리를 할 때 사용되는 함수 입니다
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class start]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [main start]
# --------------------------------------------------------------
# [초기 변수 선언 실시]
a = 4.6
b = 4.2
c = 5.6789
# [round 사용해 소수점 반올림 처리]
a_round = round(a)
b_round = round(b)
c_round = round(c, 2) # [소수점 2자리까지만 반올림 표시]
# [로그 출력 수행]
print("")
print("----------------------------------------")
print("a_round :: ", a_round)
print("----------------------------------------")
print("b_round :: ", b_round)
print("----------------------------------------")
print("c_round :: ", c_round)
print("----------------------------------------")
print("")
# --------------------------------------------------------------
# [main end]
# --------------------------------------------------------------
# --------------------------------------------------------------
# [class end]
# --------------------------------------------------------------
[결과 출력]
반응형
'Python' 카테고리의 다른 글
Comments