6042문제와 마찬가지로 format()을 사용할 수 있다.
round()를 이용할 수도 있다.
코드
f1,f2 = map(float,input().split()) result = f1/f2 print(format(result,".3f"))
f1,f2 = map(float,input().split()) result = f1/f2 print(round(result,3))