Latest web development tutorials

Pythonの文字列は、デジタルか否かが判断されます

ドキュメント・オブジェクト・リファレンス 例のpython3

数字の文字列かどうかを判断するために、カスタム関数is_number()メソッドを作成することにより、次の例:

# -*- coding: UTF-8 -*-

# Filename : test.py
# author by : www.w3big.com

def is_number(s):
    try:
        float(s)
        return True
    except ValueError:
        pass

    try:
        import unicodedata
        unicodedata.numeric(s)
        return True
    except (TypeError, ValueError):
        pass

    return False

# 测试字符串和数字
print(is_number('foo'))   # False
print(is_number('1'))     # True
print(is_number('1.3'))   # True
print(is_number('-1.37')) # True
print(is_number('1e3'))   # True

# 中文数字
print(is_number('四')) # False
# 版权号
print(is_number('©'))  # False

また、達成する場合には、埋め込みステートメントを使用することができます。

上記のコードの出力結果を実行します。

False
True
True
True
True
False
False
False
False

より多くの方法

Pythonのisdigitは()数字のみで構成される文字列を検出したか否かについて。

PythonのIsNumeric関数()数字のみで構成される文字列を検出したか否かについて。 このメソッドは、Unicodeオブジェクトのためのものです。

ドキュメント・オブジェクト・リファレンス 例のpython3