본문 바로가기
코딩테스트/Python

프로그래머스 스쿨 - 정수 부분(Python)

by 보안매크로 2023. 9. 15.
728x90
def solution(flo):
    answer = int(flo)
    return answer
728x90