黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python isdigit()方法

Python isdigit()方法

Python 字符串Python 字符串

Python isdigit() 方法檢測字符串是否只由數(shù)字組成。

 

語法

isdigit()方法語法:

str.isdigit()

 

參數(shù)

  • 無。

 

返回值

如果字符串只包含數(shù)字則返回 True 否則返回 False。

 

實例

以下實例展示了isdigit()方法的實例:

#!/usr/bin/python

str = "123456";  # Only digit in this string
print str.isdigit();

str = "this is string example....wow/b64/";
print str.isdigit();

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

True
False

Python 字符串Python 字符串

下一節(jié):Python islower()方法

Python 教程

相關(guān)文章