isdigit() 函数是作用于字符串的,用来判断字符串是否全部由数字组成。

x = '123456'
y = 'iloveyou123'
print(x.isdigit(),y.isdigit())

  

True False

  

05-11 22:32