Python怎样判断输入的数据是否数字方法归纳

判断输入的是否为纯数字:

法一:(通过str内置函数)
str = input("请输入某些东西:")
if str.isdigit():

若返回true则代表用户输入的值为纯数字。
字符串相关内置函数:(其中str代表的是字符串)
str.isalnum() 所有字符都是数字或者字母
str.isalpha() 所有字符都是字母
str.isdigit() 所有字符都是数字
str.islower() 所有字符都是小写
str.isupper() 所有字符都是大写
str.istitle() 所有单词都是首字母大写,像标题
str.isspace() 所有字符都是空白字符、\t、\n、\r

法二:(通过格式化操作符以及使用异常判断语句(try/except))
格式化操作符%:

1.%s :string(字符串)型
2.%d :int(整数)型
3.%f : float(浮点数)型

age = (input("你的年龄:"))
try:
	s = "yourage:%d" % eval(age)
except:
	print("你输入的不是数字哦。")
法三:(通过判断数据类型以及异常判断语句(try/except))
age = (input("你的年龄:"))
try:
    type(eval(age))!=float and type(eval(age))!=int
except:
	print("你输入的不是数字哦。")
法四:(通过数据类型的转换错误以及异常判断语句(try/except))
age = (input("你的年龄:"))
try:
    s=float(eval(age))
except:
	print("你输入的不是数字哦。")

你可能感兴趣的:(python,python,字符串)