문제

다음 프로그램에서 호출되는 함수의 이름을 모두 나열하라.

import math

print('수를 입력해 주세요.')
number = int(input())

result = round(math.sqrt(number * math.pi))
print('계산 결과:', result)

print, int, input, round, math.sqrt

해설