파이썬 문자함수 알아보기
숫자 구분하기 가장 범위가 가장 큰 것부터 나열하면 isnumeric() > isdigit() > isdecimal() 아래 예제를 비교해봅니다. num = '1' num2 = '1.1' num3 = '3²' num4 = '½' num5 = '4.24e-10' print(f'{num}: ', num.isdecimal(), num.isdigit(), num.isnumeric()) print(f'{num2}:', num2.isdecimal(), num2.isdigit(), num2.isnumeric()) print(f'{num3}: ', num3.isdecimal(), num3.isdigit(), num3.isnumeric()) print(f'{num4}: ', num4.isdecimal(), num4.is..