Python isdecimal()方法

2021-09-04 15:03 更新

Python isdecimal()方法


描述

Python isdecimal() 方法檢查字符串是否只包含十進(jìn)制字符。這種方法只存在于unicode對(duì)象。

注意:定義一個(gè)十進(jìn)制字符串,只需要在字符串前添加 'u' 前綴即可。

語法

isdecimal()方法語法:

str.isdecimal()

參數(shù)

  • NA。

返回值

如果字符串是否只包含十進(jìn)制字符返回True,否則返回False。

實(shí)例

以下實(shí)例展示了 isdecimal()函數(shù)的使用方法:

#!/usr/bin/python


str = u"this2009";  
print str.isdecimal();

str = u"23443434";
print str.isdecimal();

以上實(shí)例輸出結(jié)果如下:

False
True
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)