Question
[python] μμμ μλ¦Ώμ μ§μ (round)
Shinjio
2023. 8. 22. 08:23
λ°μν
round() ν¨μ μ¬μ©
round(number, μλ¦Ώμ)
def solution(num1, num2):
answer = round(num1 / num2 * 1000, 0)
return answer
λ°μν