문제

다음 수식을 소수점 둘째 자리까지만 계산하여 파이썬 프로그램으로 출력하라.

$$ \sqrt{3} $$

코드

import math
print(round(math.sqrt(3), 2))

실행 결과

1.73

해설