python中如何判断输入是否为数字

str.isdigit()
是数字会显示True
不是会显示False

例如:1.isdigit()  返回结果为True

 

你可能感兴趣的:(python中如何判断输入是否为数字)