str.isnumeric(): True if 只包含數字;otherwise False。註意:此函數只能用於unicode string str.isdigit(): True if 只包含數字;otherwise False。 str.isalpha():True if 只包含字母;othe ...
str.isnumeric(): True if 只包含數字;otherwise False。註意:此函數只能用於unicode string
str.isdigit(): True if 只包含數字;otherwise False。
str.isalpha():True if 只包含字母;otherwise False。
str.isalnum():True if 只包含字母或者數字;otherwise False。