isdigit() 是字符串的一个方法,用来判断这个字符串是否是纯数字的字符串In [1]: str = 'hello' In [2]: str.isdigit() Out[2]: FalseIn [3]: str = '' In [4]: str.isdigit() Out[4]: True