arg-1의 값이 숫자로 이루어져 있는지 확인하는 조건문입니다. A conditional statement confirming whether the value of arg-1 is made up of numbers. if arg-1 parsed as integer is set: 이렇게 코드를 만들 수 있지만, 숫자 뒤에 다른 문자가 들어가도 숫자로 인식합니다. You can create a code like this, but even if a number is followed by another character, it is recognized as a number. if arg-1 parsed as a number is a number: 하지만 이 코드는 입력한 글자에 숫자 외 다른 문자가 1글자라도 ..