python怎样判断输入了多少个数字
2个回答
2017-11-15
展开全部
123456789101112# 使用type函数很简单的就能判断>>> a=1>>> b=1.2>>> c="hello">>> print(type(a),type(b),type(c))(<type 'int'>, <type 'float'>, <type 'str'>)>>> if type(a) == int: print 0 0>>> if type(b) == int: print 0>>>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询