14. 아래 코드에서 출력되는 값을 작성하시오.
def test(v): if type(v) == type(""): return len(v) elif type(v) == type(100): return 101 else: return 20 a = "100.0" b = 100.0 c = (100.0, 200.0) print(test(a) + test(b) + test(c))
정답 확인 | 맞췄어요 O | 틀렸어요 X |
def test(v): if type(v) == type(""): return len(v) elif type(v) == type(100): return 101 else: return 20 a = "100.0" b = 100.0 c = (100.0, 200.0) print(test(a) + test(b) + test(c))
정답 확인 | 맞췄어요 O | 틀렸어요 X |