小数や符号付きの文字列が数値か判定するには、例外処理を用いるのが一般的。
text = -1.234
try:
float(text)
print("Numeric!")
except ValueError:
print("Not Numeric!")
Go to list of users who liked
More than 1 year has passed since last update.
小数や符号付きの文字列が数値か判定するには、例外処理を用いるのが一般的。
text = -1.234
try:
float(text)
print("Numeric!")
except ValueError:
print("Not Numeric!")
Register as a new user and use Qiita more conveniently
Go to list of users who liked