1. 程式人生 > >Python判斷字串是否為數字

Python判斷字串是否為數字

str為字串
1、str.isalnum() 所有字元都是數字或者字母
2、str.isalpha() 所有字元都是字母
3、str.isdigit() 所有字元都是數字
4、str.islower() 所有字元都是小寫
5、str.isupper() 所有字元都是大寫
6、str.istitle() 所有單詞都是首字母大寫
7、str.isspace() 所有字元都是空白字元、\t、\n、\r