파이썬 숫자() 메소드는 문자열의 모든 문자가 숫자인지 여부를 확인합니다. 모든 문자가 true이면 True를 반환하고, 그렇지 않으면 False를 반환합니다.
숫자 문자에는 숫자 문자와 유니코드 숫자 값 속성을 갖는 모든 문자가 포함됩니다.
서명
isnumeric()
매개변수
매개변수가 필요하지 않습니다.
반품
True 또는 False를 반환합니다.
기능을 이해하기 위해 isnumeric() 메소드의 몇 가지 예를 살펴보겠습니다.
Python 문자열 isnumeric() 메서드 예 1
여기서는 문자열이 숫자인지 확인하는 간단한 예제를 만듭니다.
# Python isnumeric() method example # Variable declaration str = '12345' # Calling function str2 = str.isnumeric() # Displaying result print(str2)
산출:
True
Python 문자열 isnumeric() 메서드 예 2
숫자가 아닌 문자열에 대해 테스트해 보겠습니다. False를 반환하는지 확인하세요.
# Python isnumeric() method example # Variable declaration str = 'javatpoint12345' # Calling function str2 = str.isnumeric() # Displaying result print(str2)
산출:
False
Python 문자열 isnumeric() 메서드 예 3
Python 프로그래밍에서 isnumeric() 메서드를 어디에 어떻게 적용할 수 있는지 시나리오를 확인하세요.
# Python isnumeric() method example str = '123452500' # True if str.isnumeric() == True: print('Numeric') else: print('Not numeric') str2 = '123-4525-00' # False if str2.isnumeric() == True: print('Numeric') else: print('Not numeric')
산출:
Numeric Not numeric