Python中判斷輸入資料的型別

2021-07-24 01:21:29 字數 390 閱讀 8717

在接收input()輸入的資料後,判斷接收到的字串是否為數字

例如:str = input("please enter something:")

if str.isdigit():為true表示輸入的所有字元都是數字,否則,不是全部為數字

str為字串

str.isalnum() 所有字元都是數字或者字母

str.isalpha() 所有字元都是字母

str.isdigit() 所有字元都是數字

str.islower() 所有字元都是小寫

str.isupper() 所有字元都是大寫

str.istitle() 所有單詞都是首字母大寫,像標題

str.isspace() 所有字元都是空白字元、\t、\n、\r

python中的判斷 python中判斷變數的型別

python中判斷變數的型別 python的資料型別有 數字 int 浮點 float 字串 str 列表 list 元組 tuple 字典 dict 集合 set 一般通過以下方法進行判斷 1 isinstance 引數1,引數2 描述 該函式用來判斷乙個變數 引數1 是否是已知的變數型別 引數2...

判斷Python輸入是否為數字

在接收raw input方法後,判斷接收到的字串是否為數字 例如 str raw input please input the number if str.isdigit 為true表示輸入的所有字元都是數字,否則,不是全部為數字 str為字串 str.isalnum 所有字元都是數字或者字母 st...

判斷Python輸入是否為數字

判斷user接收到的字串是否為數字 例如 user 78234 user.isdigit str.isdigit user 兩種寫法 為true表示輸入的所有字元都是數字,false表示不是數字或者不全部為數字 str.isalnum 所有字元都是數字或者字母 str.isalpha 所有字元都是字...