パイソン 数値() このメソッドは、文字列のすべての文字が数字であるかどうかをチェックします。すべての文字が true の場合は True を返し、それ以外の場合は False を返します。
数字には、数字文字と、Unicode 数値プロパティを持つすべての文字が含まれます。
サイン
isnumeric()
パラメーター
パラメータは必要ありません。
戻る
True または False を返します。
isnumeric() メソッドの機能を理解するために、そのメソッドの例をいくつか見てみましょう。
Python String isnumeric() メソッドの例 1
ここでは、文字列が数値かどうかをチェックする簡単な例を作成します。
# Python isnumeric() method example # Variable declaration str = '12345' # Calling function str2 = str.isnumeric() # Displaying result print(str2)
出力:
True
Python String isnumeric() メソッドの例 2
数値以外の文字列でテストしてみましょう。False が返されることを確認してください。
# Python isnumeric() method example # Variable declaration str = 'javatpoint12345' # Calling function str2 = str.isnumeric() # Displaying result print(str2)
出力:
False
Python String 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