python判断用户输入的类型_我正在制作一个函数来检测Python中的输入类型,但无法使其正常工作...

So I am making a prime number detector as a project. I’m VERY new to programming and my friend showed me a little python. I want to make a function that detects if the user puts in a number for the input (like 5,28,156,42,63) and if the put in something else (like banana,pants,or cereal) to give them a custom error saying "Invalid Number. Please Try Again" and then looping the program until they put in a number.

Please help me make this work.

def number_checker():

user_number = int(input('Please enter a Number: '))

check = isinstance(user_number, int)

if check == True:

print ('This is a number')

if check == False:

print ('This is not a number')

解决方案

1) Casting input to int would raise an exception if the input string cannot be converted to int.

user_number = int(input('Please enter a Number: '))

^^^

2) It does not make sense to cross-verify user_number with int instance as it would already be int

3) You can try

def number_checker():

while not input("enter num: ").isdigit():

print("This is not a number")

print("This is a number")

number_checker()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值