0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Pythonで「文字列の中の文字が数を表す文字かどうかを判定する(isdecimal, isdigit, isnumeric)」の動作を確認してみた

Posted at

概要

Pythonで「文字列の中の文字が数を表す文字かどうかを判定する(isdecimal, isdigit, isnumeric)」の動作を確認してみました。以下のページを参考にしました。

実装

ファイルを作成しました。

sample.py
print("75120".isdecimal())
print("75F2".isdecimal())
print("0982".isdecimal())
print("75a0".isdecimal())
print("-8052".isdecimal())
print("3.14".isdecimal())
print("7,524".isdecimal())
print("七五三".isdecimal())
print("".isdecimal())

print("85120".isdigit())
print("75F2".isdigit())
print("-8052".isdigit())
print("3.14".isdigit())
print("7,524".isdigit())
print("3785".isdigit())
print("4p90".isdigit())
print("七五三".isdigit())

print("⑤⑥⑦".isdecimal())
print("⑤⑥⑦".isdigit())
print("".isdigit())

print("9852".isnumeric())
print("87E2".isnumeric())
print("-8052".isnumeric())
print("3.14".isnumeric())
print("7,524".isnumeric())
print("3785".isnumeric())
print("七五三".isnumeric())
print("拾伍".isnumeric())
print("".isnumeric())

以下のコマンドを実行しました。

$ python3 sample.py
True
False
True
False
False
False
False
False
False
True
False
False
False
False
True
False
False
False
True
False
True
False
False
False
False
True
True
True
False

まとめ

何かの役に立てばと。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?